Rename require reference to requirejs
Require is a reserverd word for phantomjs refs #4315 refs #4303
This commit is contained in:
parent
04f7149cfe
commit
f93344330e
|
@ -17,8 +17,8 @@ requirejs.config({
|
||||||
});
|
});
|
||||||
|
|
||||||
define(['jquery','Holder'], function ($) {
|
define(['jquery','Holder'], function ($) {
|
||||||
require(['bootstrap']);
|
requirejs(['bootstrap']);
|
||||||
require(['icinga/icinga'], function (Icinga) {
|
requirejs(['icinga/icinga'], function (Icinga) {
|
||||||
window.$ = $;
|
window.$ = $;
|
||||||
window.jQuery = $;
|
window.jQuery = $;
|
||||||
window.Icinga = Icinga;
|
window.Icinga = Icinga;
|
||||||
|
|
Loading…
Reference in New Issue