Angular.js UI-Bootstrap Failed to Load Template

Angular UI Fail to Load Template On the Firefox Javascript Web Console you may find Trace of this message: uib%2Ftemplate%2Fmodal%2Fwindow.html&p1=404&p2=Not%20Found Solution: You have to Include Only the '-tpls-' Javascript File. So This Setup is Right: <script src="/lib/ui-bootstrap-custom-tpls-2.5.0.min.js"></script> But instead this one is Not: <script src="/lib/ui-bootstrap-custom-tpls-2.5.0.min.js"></script> <script src="/lib/ui-bootstrap-custom-2.5.0.min.js"></script>continue reading →

Angular ngSanitize Not Working

This is to Solve the Embarrassing Issue of ngSanitize Not Working. You have simply to Add to the App both: angular-sanitize.js and textAngular-sanitize.js! Something like that: <script src="/lib/angular-sanitize.min.js"></script> <script src="/lib/textAngular-sanitize.js"></script>continue reading →