javascript - Angular ui tour error with requirejs -


i using angular ui tour require js , trying load library getting below error. have included files related ui tour , added dependency in angular module also. can me find out solution.

angular.js:68 uncaught error: [$injector:modulerr] failed instantiate module mm-webapp-material due to: error: [$injector:modulerr] failed instantiate module bm.uitour due to: error: [$injector:nomod] module 'bm.uitour' not available! 

============================

["ez-ng": "components/ez-ng/dist/ez-ng.min",         "hotkeys": "components/angular-hotkeys/build/hotkeys.min",         "hone": "components/hone/hone",         "tether": "components/tether/dist/js/tether",         "angular-scroll": "components/angular-scroll/angular-scroll",         "angular-bind-html": "components/angular-bind-html-compile/angular-bind-html-compile",         "angular-uitour": "components/angular-ui-tour/dist/angular-ui-tour",]   =========================  ["ez-ng": {             deps: ["angular"]         },         "hotkeys": {             deps: ["angular"]         },         "hone": {             deps: ["angular"]         },         "tether": {             deps: ["angular"]         },         "angular-scroll": {             deps: ["angular"]         },         "angular-bind-html": {             deps: ["angular"]         },         "angular-uitour": {             deps: ["angular", "angular-sanitize", "angular-bootstrap", "ez-ng", "angular-scroll", "hotkeys", "angular-bind-html", "tether", "hone"]         } ] 


Comments

Popular posts from this blog

Sort a complex associative array in PHP -

vb.net - How to ignore if a cell is empty nothing -

recursion - Can every recursive algorithm be improved with dynamic programming? -