Uncaught TypeError: Cannot read property 'Defaults' of undefined
Solution
Add jsPlumb to your shim configuration using the export setting as shown below.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
requirejs.config({ | |
baseUrl: window.location.protocol + "//" + window.location.host + window.location.pathname.split("/").slice(0, -1).join("/"), | |
paths: { | |
lib: "lib", | |
app: "js", | |
jquery: "lib/jquery_v1.9.1/jquery-1.9.1.min", | |
jquery_ui: "lib/jquery-ui_v1.12.1/jquery-ui", | |
jsPlumb: "lib/jsPlumb-1.5.0/jquery.jsPlumb-1.5.0-min" | |
}, | |
shim: { | |
"jsPlumb": { | |
deps: ['jquery','jquery_ui'], | |
exports: 'jsPlumb' | |
} | |
} | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
define(['require', 'lodash','jquery','jsPlumb'], function(require, _,$,jsPlumb) { | |
//you code goes here | |
}); |