removed packed versions of files, uglifing would be doing on-a-fly

This commit is contained in:
coderaiser 2012-08-27 03:58:09 -04:00
parent 45a6bbd8f6
commit 77758291d0
8 changed files with 5 additions and 52 deletions

View file

@ -41,8 +41,8 @@ var CloudCommander, CloudFunc, CodeMirror;
*/
var loadAll = function() {
Util.cssLoad([
{ src : 'lib/client/editor/codemirror/pack/codemirror.pack.css'},
{ src : 'lib/client/editor/codemirror/pack/night.pack.css'}
{ src : 'lib/client/editor/codemirror/codemirror.css'},
{ src : 'lib/client/editor/codemirror/theme/night.css'}
]);
@ -58,13 +58,13 @@ var CloudCommander, CloudFunc, CodeMirror;
});
Util.jsload('lib/client/editor/' +
'codemirror/pack/javascript.pack.js',
'codemirror/mode/javascript.js',
createEditorDiv);
};
/* load CodeMirror main module */
Util.jsload('lib/client/editor/' +
'codemirror/pack/codemirror.pack.js', loadAll);
'codemirror/codemirror.js', loadAll);
});
/* function shows CodeMirror editor */