jquery-browser-plugin icon indicating copy to clipboard operation
jquery-browser-plugin copied to clipboard

Mismatched anonymous define() modules ...

Open dbrammertz opened this issue 10 years ago • 1 comments

The anonymous module registration is not allowed in require.js and causes the error message "Mismatched anonymous define() modules ..."

Can easily be solved by naming the module:

  •    define(['jquery'], function ($) {
    
  •    define('jquery-browser',['jquery'], function ($) {
    

dbrammertz avatar Oct 22 '15 12:10 dbrammertz

Would you like to submit a pull request to make this change?

le717 avatar Oct 26 '15 15:10 le717