aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMisko Hevery2012-03-13 13:49:05 -0700
committerMisko Hevery2012-03-13 16:58:36 -0700
commit31cd5803102ba93f8b93cd5304aea4ade50f96ab (patch)
tree6714fa9f40541f2e7f7b8211e9c2a02b9d8a064e /src
parentd34f3bc7a61056a1f4aebb49d2475414fa16d5e4 (diff)
downloadangular.js-31cd5803102ba93f8b93cd5304aea4ade50f96ab.tar.bz2
fix(ng-non-bindable): increase priority to 1000
- increase ng-non-bindable prioirity to 1000 so that it prevents attribute interpolation on same level.
Diffstat (limited to 'src')
-rw-r--r--src/directive/ngNonBindable.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/directive/ngNonBindable.js b/src/directive/ngNonBindable.js
index 217618cc..2e9faa5a 100644
--- a/src/directive/ngNonBindable.js
+++ b/src/directive/ngNonBindable.js
@@ -3,6 +3,7 @@
/**
* @ngdoc directive
* @name angular.module.ng.$compileProvider.directive.ng-non-bindable
+ * @priority 1000
*
* @description
* Sometimes it is necessary to write code which looks like bindings but which should be left alone
@@ -29,4 +30,4 @@
</doc:scenario>
</doc:example>
*/
-var ngNonBindableDirective = ngDirective({ terminal: true });
+var ngNonBindableDirective = ngDirective({ terminal: true, priority: 1000 });