Can I load jQuery migrate via RequireJS? I don't understand how the timing can be handled correctly. See this example:
require([
  'jquery',
  'jqmigrate'
], function ($) {
  if ($.browser.msie) {...}
});
Isn't is possible that jqmigrate will load before jquery? Also, I do not want to keep loading jqmigrate explicitly in every module. Any way to do this in the require.config so it loads jqmigrate automatically when jQuery is required?
There are a couple of things you will need:
jquery.jquery-wrapper.js:
define(['jquery-src', 'jqmigrate'], function ($) {
  return $;
})
require.config
{
  paths: {
    'jquery-src' : '/path/to/jquery',
    'jqmigrate': '/path/to/jqmigrate',
    'jquery': '/path/to/jquery-wrapper'
  }
}
                        If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With