1

I was reading this answer Alternative to ng-show/-hide or how to load only relevant section of DOM and am not sure what the \: in [ng\:cloak] mean. Any feedback is appreciated.

Community
  • 1
  • 1
foobar8675
  • 1,215
  • 3
  • 16
  • 26
  • That should just be a character escape. `[ng\:cloak]` selector should mean any tag with the `ng:cloak` attribute. [Sample](http://jsfiddle.net/hari_shanx/bhtqcpqr/) – Harry Oct 09 '14 at 16:50

1 Answers1

3

You escape special characters in css by a backslash. The one you've used targets.

<anyelement ng:clock="somevalue">
Amit Joki
  • 58,320
  • 7
  • 77
  • 95