Files
Codiad/plugins/terminal/init.js
2013-04-19 10:35:19 +02:00

19 lines
509 B
JavaScript

/*
* Copyright (c) Codiad & Kent Safranski (codiad.com), distributed
* as-is and without warranty under the MIT License. See
* [root]/license.txt for more. This information must remain intact.
*/
(function(global, $){
global.codiad.terminal = {
termWidth: $(window)
.outerWidth() - 500,
open: function() {
codiad.modal.load(this.termWidth, 'plugins/terminal/dialog.php');
codiad.modal.hideOverlay();
}
};
})(this, jQuery);