mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-18 15:50:22 +00:00
34 lines
1 KiB
JavaScript
34 lines
1 KiB
JavaScript
'use strict';
|
|
|
|
/**
|
|
* @ngdoc directive
|
|
* @name ng.directive:ngNonBindable
|
|
* @restrict AC
|
|
* @priority 1000
|
|
*
|
|
* @description
|
|
* Sometimes it is necessary to write code which looks like bindings but which should be left alone
|
|
* by angular. Use `ngNonBindable` to make angular ignore a chunk of HTML.
|
|
*
|
|
* @element ANY
|
|
*
|
|
* @example
|
|
* In this example there are two location where a simple binding (`{{}}`) is present, but the one
|
|
* wrapped in `ngNonBindable` is left alone.
|
|
*
|
|
* @example
|
|
<doc:example>
|
|
<doc:source>
|
|
<div>Normal: {{1 + 2}}</div>
|
|
<div ng-non-bindable>Ignored: {{1 + 2}}</div>
|
|
</doc:source>
|
|
<doc:scenario>
|
|
it('should check ng-non-bindable', function() {
|
|
expect(using('.doc-example-live').binding('1 + 2')).toBe('3');
|
|
expect(using('.doc-example-live').element('div:last').text()).
|
|
toMatch(/1 \+ 2/);
|
|
});
|
|
</doc:scenario>
|
|
</doc:example>
|
|
*/
|
|
var ngNonBindableDirective = ngDirective({ terminal: true, priority: 1000 });
|