Angularjs: how to close ng-if in comment block? Angularjs: how to close ng-if in comment block? angularjs angularjs

Angularjs: how to close ng-if in comment block?


ng-if is restricted to 'A'. so it can be used only as attribute, you can't use in comment Here's the angularjs code for ngIf

var ngIfDirective = ['$animate', function($animate) {  return {    transclude: 'element',    priority: 600,    terminal: true,    restrict: 'A',       // --> This means restricting to Attribute

The restrict option is typically set to: 'E','A','C','M'

One of EACM restricts the directive to a specific directive declaration style. If you don't restrict any, the defaults (elements and attributes) are used.

E - Element name (default): <my-directive></my-directive>

A - Attribute (default): <div my-directive="exp"></div>

C - Class: <div class="my-directive: exp;"></div>

M - Comment: <!-- directive: my-directive exp -->