mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-07-19 09:24:51 +00:00
fixed bug with location of cloudfun.js
This commit is contained in:
parent
010d78e79d
commit
70026d6135
1 changed files with 6 additions and 5 deletions
|
|
@ -66,7 +66,8 @@ exports.Cache={
|
|||
exports.Minify={
|
||||
/* pathes to directories */
|
||||
INDEX :'index.html',
|
||||
LIBDIRCLIENT : './lib/client',
|
||||
LIBDIR : '/lib/',
|
||||
LIBDIRCLIENT : './lib/client/',
|
||||
/* приватный переключатель минимизации */
|
||||
_allowed :{css:true,js:true,html:true, img: true},
|
||||
|
||||
|
|
@ -149,10 +150,10 @@ exports.Minify={
|
|||
if (this._allowed.js) {
|
||||
lOptimizeParams=[{
|
||||
'client.js': lPostProcessing_f},
|
||||
this.LIBDIRCLIENT + '/cloudfunc.js',
|
||||
this.LIBDIRCLIENT + '/keyBinding.js',
|
||||
this.LIBDIRCLIENT + '/editor.js',
|
||||
this.LIBDIRCLIENT + '/viewer.js'];
|
||||
this.LIBDIR + 'cloudfunc.js',
|
||||
this.LIBDIRCLIENT + 'keyBinding.js',
|
||||
this.LIBDIRCLIENT + 'editor.js',
|
||||
this.LIBDIRCLIENT + 'viewer.js'];
|
||||
}
|
||||
|
||||
if (this._allowed.html)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue