Deprecate $j global variable and replace them all with standard jQuery

This commit is contained in:
Hadi Nategh
2016-06-02 16:51:15 +02:00
parent d47e4889dc
commit 87fb94a496
103 changed files with 1123 additions and 1123 deletions

View File

@ -36,11 +36,11 @@ egw.extend('jquery', egw.MODULE_WND_LOCAL, function(_app, _wnd)
this.webserverUrl + '/api/js/jquery/jquery-ui.js',
this.webserverUrl + '/api/js/jquery/jquery.html5_upload.js'
], function () {
this.constant('jquery', '$j', _wnd.$j, _wnd);
this.constant('jquery', 'jQuery', _wnd.jQuery, _wnd);
ready.readyDone(token);
}, this);
return {
'$j': null
'jQuery': null
};
});