0

I have a page implemented using AngularJS. When I access the page using FireFox, for a couple of seconds, it shows up some angular directives, but when I use Chrome, it doesn't: Using Firefox

How can I handle it? Is it due to net latency?

  • We need code in order to help you. What behavior do you want? The FireFox behavior or the Chrome behavior? – BShaps Jun 27 '18 at 22:34

1 Answers1

0

You need to use 'ng-cloak' on the parent tag (preferably in the ng-controller tag) to suppress it. Take a look at the documentation

https://docs.angularjs.org/api/ng/directive/ngCloak

Prabhu Thomas
  • 174
  • 2
  • 9