You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi Finnsson,
The pager.js amd implementation relies on jQuery lib registers itself as the global variable "$", which is true by default. But developer may choose to use jQuery noConflict to turn off global variables "$" and "jQuery" to conform with the idea of AMD. http://requirejs.org/docs/jquery.html#noconflictmap
Should not this
define('pager', ['knockout', 'jquery'], function (ko) {
return pagerJsModule($, ko);
});
be updated to
define('pager', ['knockout', 'jquery'], function (ko, $) { ... });
?
The text was updated successfully, but these errors were encountered:
Hi Finnsson,
The pager.js amd implementation relies on jQuery lib registers itself as the global variable "$", which is true by default. But developer may choose to use jQuery noConflict to turn off global variables "$" and "jQuery" to conform with the idea of AMD.
http://requirejs.org/docs/jquery.html#noconflictmap
Should not this
be updated to
?
The text was updated successfully, but these errors were encountered: