This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| define(function () { | |
| "use strict"; | |
| var CommandManager = brackets.getModule("command/CommandManager"), | |
| Commands = brackets.getModule("command/Commands"), | |
| Menus = brackets.getModule("command/Menus"); | |
| var MY_COMMAND_ID = "PDFEXPORT"; | |
| function exportAsPDF() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| define(function (require) { | |
| "use strict"; | |
| var AppInit = brackets.getModule("utils/AppInit"); | |
| var DefaultDialogs = brackets.getModule("widgets/DefaultDialogs"); | |
| var Dialogs = brackets.getModule("widgets/Dialogs"); | |
| AppInit.appReady(function _onAppReady() { | |
| var myDialog = Dialogs.showModalDialog( | |
| DefaultDialogs.DIALOG_ID_INFO, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| * { | |
| box-sizing: border-box; | |
| } | |
| *::before, | |
| *::after { | |
| box-sizing: inherit; | |
| } | |
| .container { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ npm --verbose --save install babel-core | |
| npm info it worked if it ends with ok | |
| npm verb cli [ 'node', | |
| npm verb cli '/Users/sbruchmann/.npm-packages/bin/npm', | |
| npm verb cli '--verbose', | |
| npm verb cli '--save', | |
| npm verb cli 'install', | |
| npm verb cli 'babel-core' ] | |
| npm info using [email protected] | |
| npm info using [email protected] |
OlderNewer