javascript - AngularJS not loading views in firefox -


i'm venturing first try in angularjs world. i'm using ui-router states. google chrome loading states without problem while firefox doesn't respond. firebug doesn't show stack, error without anything.

firebug screenshot

here state:

.state('showads', {         url: "/ads",         templateurl: "views/ads/index.html",         controller: "adsindexcontroller",         resolve: {             deps: ['$oclazyload', function($oclazyload) {                 return $oclazyload.load([{                     name: 'app',                     files: [                         'js/controllers/adscontrollers.js',                         'js/services/adservice.js',                     ]                 }]);             }]         }     }) 

i found problem. i'm using µblock, extension block ads, , it's blocking request because name of file ads.html.


Comments

Popular posts from this blog

javascript - AngularJS custom datepicker directive -

javascript - jQuery date picker - Disable dates after the selection from the first date picker -