mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-30 11:54:33 +03:00
11 lines
202 B
JavaScript
11 lines
202 B
JavaScript
|
import Component from 'ember-component';
|
||
|
|
||
|
export default Component.extend({
|
||
|
|
||
|
'data-test-publishmenu-published': true,
|
||
|
|
||
|
didInsertElement() {
|
||
|
this.get('setSaveType')('publish');
|
||
|
}
|
||
|
});
|