fixed bug with client.js minifying

This commit is contained in:
coderaiser 2012-12-11 09:35:53 -05:00
parent 5ccabc427c
commit 32fc0fdf89
4 changed files with 10 additions and 11 deletions

View file

@ -4,7 +4,8 @@
"use strict";
var main = global.cloudcmd.main,
DIR = main.DIR;
DIR = main.DIR,
LIBDIR = main.LIBDIR;
exports.Minify = {
/* pathes to directories */
@ -68,7 +69,7 @@
lStyleCSS = DIR + 'css/style.css',
lResetCSS = DIR + 'css/reset.css';
if (this._allowed.js) {
lOptimizeParams.push(DIR + 'client.js');
lOptimizeParams.push(LIBDIR + 'client.js');
}
if (this._allowed.html)