6 lines
177 B
JavaScript
6 lines
177 B
JavaScript
define(['jquery'], function ($) {
|
|
// Only once jquery has loaded, load the jQuery plugins
|
|
require(['libs/jQueryPluginsCollection'], function () {
|
|
// Do nothing
|
|
});
|
|
}); |