chore: rename non-bindable to ng-non-bindable

This commit is contained in:
Misko Hevery
2015-05-11 16:00:53 -07:00
parent d310a9c0b4
commit 78d3f62b6a
3 changed files with 11 additions and 11 deletions

View File

@ -1,7 +1,7 @@
import {Directive} from 'angular2/src/core/annotations_impl/annotations';
/**
* The `NonBindable` directive tells Angular not to compile or bind the contents of the current
* The `NgNonBindable` directive tells Angular not to compile or bind the contents of the current
* DOM element. This is useful if the element contains what appears to be Angular directives and
* bindings but which should be ignored by Angular. This could be the case if you have a site that
* displays snippets of code, for instance.
@ -16,8 +16,8 @@ import {Directive} from 'angular2/src/core/annotations_impl/annotations';
* @exportedAs angular2/directives
*/
@Directive({
selector: '[non-bindable]',
selector: '[ng-non-bindable]',
compileChildren: false
})
export class NonBindable {
export class NgNonBindable {
}