Skip to main content

All Questions

0 votes
2 answers
400 views

No-JavaScript or no-cookies-enabled browser

Assume that a user has JavaScript or cookies turned off in the mobile/desktop browser. Now, when a user comes to the site, the user should be re-directed to a specific page (e.g. some error page). How ...
Sunny's user avatar
  • 1
4 votes
2 answers
2k views

Angular directive not picking up service data

My service NavData angular.module('navData', []). factory('NavData', function() { var navData = {}; navData.depth = 0; navData.category_id = ""; navData....
Rebel's user avatar
  • 797