8 lines
231 B
JavaScript
8 lines
231 B
JavaScript
|
|
var scripts = new Array();
|
||
|
|
var jsPath = 'include/ECM/';
|
||
|
|
scripts.push('EcmMultiPdf/EcmMultiPdf.js');
|
||
|
|
scripts.push('EcmDropdownEditor/EcmDropdownEditor.js');
|
||
|
|
|
||
|
|
$.each(scripts, function(k,v) {
|
||
|
|
$.getScript(jsPath+v, function(){});
|
||
|
|
} );
|