This commit also: - removes [+ New Topic] behaviour from share, this feature has been duplicated in composer actions, months ago - introduces our new experimental spacing standard for css: eg: `s(2)` - introduces a new panel UI for modals
12 lines
221 B
JavaScript
12 lines
221 B
JavaScript
import { fmt } from "discourse/lib/computed";
|
|
|
|
export default Ember.Component.extend({
|
|
panel: null,
|
|
|
|
panelComponent: fmt("panel.id", "%@-panel"),
|
|
|
|
classNameBindings: ["panel.id"],
|
|
|
|
classNames: ["modal-panel"]
|
|
});
|