Files
Codiad/components/terminal/init.js
2012-10-16 07:59:05 -07:00

18 lines
472 B
JavaScript
Executable File

/*
* 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, 'components/terminal/dialog.php');
}
};
})(this, jQuery);