New Scriptbundle .include Not Working For Breeze.min.js
I am using John Papa's SPA jump start App to create my own app and for every part of his tutorial I complete I keep running into the same problem. In a new section of the tutorial
Solution 1:
I had to create a new global.asax file for this to work. There was nothing wrong with my scriptbundles.
Solution 2:
I was trying to use jquery.loadmask.min.js and faced the same problem.
The solution is,
- Rename jquery.loadmask.min.js to jquery.loadmask-0.4.min.js
- Rename jquery.loadmask.js to jquerym.loadmask-0.4.js
Now in Script bundle add the files as following, bundles.Add(new ScriptBundle("~/bundles/jqueryloadmask"). Include("~/Scripts/jquery.loadmask-{version}.js"));
Post a Comment for "New Scriptbundle .include Not Working For Breeze.min.js"