3 // We only support AMD modules with an explicit define() statement.
8 jquery: '[JSURL]lib/jquery/jquery-1.12.1.min[JSEXT]',
9 jqueryui: '[JSURL]lib/jquery/ui-1.11.4/jquery-ui.min[JSEXT]',
10 jqueryprivate: '[JSURL]lib/requirejs/jquery-private[JSEXT]'
13 // Custom jquery config map.
15 // '*' means all modules will get 'jqueryprivate'
16 // for their 'jquery' dependency.
17 '*': { jquery: 'jqueryprivate' },
19 // 'jquery-private' wants the real jQuery module
20 // though. If this line was not here, there would
21 // be an unresolvable cyclic dependency.
22 jqueryprivate: { jquery: 'jquery' }