mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-13 22:41:32 -05:00
6710a1da89
closes #3481 - Pressing Ctrl/CMD+Shift+C in the editor will open up a modal that contains the generated HTML for either the selected text or the whole post
7 lines
156 B
JavaScript
7 lines
156 B
JavaScript
var CopyHTMLController = Ember.Controller.extend({
|
|
|
|
generatedHTML: Ember.computed.alias('model.generatedHTML')
|
|
|
|
});
|
|
|
|
export default CopyHTMLController;
|