blob: 53beabf1a41cf5031378fdb0c2ad0dcd97da4869 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
(function () {
'use strict';
define([
'jquery',
'jquery-ui',
'bootstrap',
'jquery.colorbox',
'jquery.lazyload',
'jquery.tablesorter'
], function (jquery) {
return {
$: jquery
};
});
})();
|