diff options
| author | Misko Hevery | 2010-07-02 15:39:47 -0700 | 
|---|---|---|
| committer | Misko Hevery | 2010-07-02 15:39:57 -0700 | 
| commit | 1f0562150921ea2f05149b64ef0440937491def9 (patch) | |
| tree | 20c1c2c69038a7d02d720b811453df6438d274a5 /src/directives.js | |
| parent | 105e9443c4170870dd34f69073a6eafaabeaf567 (diff) | |
| download | angular.js-1f0562150921ea2f05149b64ef0440937491def9.tar.bz2 | |
change all attributes from ng- to ng: prefix
Diffstat (limited to 'src/directives.js')
| -rw-r--r-- | src/directives.js | 40 | 
1 files changed, 20 insertions, 20 deletions
diff --git a/src/directives.js b/src/directives.js index cabf0c23..1b422331 100644 --- a/src/directives.js +++ b/src/directives.js @@ -1,10 +1,10 @@ -angularDirective("ng-init", function(expression){ +angularDirective("ng:init", function(expression){    return function(element){      this.$tryEval(expression, element);    };  }); -angularDirective("ng-controller", function(expression){ +angularDirective("ng:controller", function(expression){    return function(element){      var controller = getter(window, expression, true) || getter(this, expression, true);      if (!controller) @@ -16,13 +16,13 @@ angularDirective("ng-controller", function(expression){    };  }); -angularDirective("ng-eval", function(expression){ +angularDirective("ng:eval", function(expression){    return function(element){      this.$onEval(expression, element);    };  }); -angularDirective("ng-bind", function(expression){ +angularDirective("ng:bind", function(expression){    return function(element) {      var lastValue = noop, lastError = noop;      this.$onEval(function() { @@ -89,7 +89,7 @@ function compileBindTemplate(template){    return fn;  } -angularDirective("ng-bind-template", function(expression){ +angularDirective("ng:bind-template", function(expression){    var templateFn = compileBindTemplate(expression);    return function(element) {      var lastValue; @@ -108,7 +108,7 @@ var REMOVE_ATTRIBUTES = {    'readonly':'readOnly',    'checked':'checked'  }; -angularDirective("ng-bind-attr", function(expression){ +angularDirective("ng:bind-attr", function(expression){    return function(element){      var lastValue = {};      this.$onEval(function(){ @@ -134,17 +134,17 @@ angularDirective("ng-bind-attr", function(expression){    };  }); -angularWidget("@ng-non-bindable", noop); +angularWidget("@ng:non-bindable", noop); -angularWidget("@ng-repeat", function(expression, element){ -  element.removeAttr('ng-repeat'); -  element.replaceWith(this.comment("ng-repeat: " + expression)); +angularWidget("@ng:repeat", function(expression, element){ +  element.removeAttr('ng:repeat'); +  element.replaceWith(this.comment("ng:repeat: " + expression));    var template = this.compile(element);    return function(reference){      var match = expression.match(/^\s*(.+)\s+in\s+(.*)\s*$/),          lhs, rhs, valueIdent, keyIdent;      if (! match) { -      throw "Expected ng-repeat in form of 'item in collection' but got '" + +      throw "Expected ng:repeat in form of 'item in collection' but got '" +        expression + "'.";      }      lhs = match[1]; @@ -176,7 +176,7 @@ angularWidget("@ng-repeat", function(expression, element){            if (keyIdent) childScope[keyIdent] = key;            lastElement.after(childScope.$element);            childScope.$index = index; -          childScope.$element.attr('ng-repeat-index', index); +          childScope.$element.attr('ng:repeat-index', index);            childScope.$init();            children.push(childScope);          } @@ -192,7 +192,7 @@ angularWidget("@ng-repeat", function(expression, element){    };  }); -angularDirective("ng-click", function(expression, element){ +angularDirective("ng:click", function(expression, element){    return function(element){      var self = this;      element.bind('click', function(){ @@ -203,7 +203,7 @@ angularDirective("ng-click", function(expression, element){    };  }); -angularDirective("ng-watch", function(expression, element){ +angularDirective("ng:watch", function(expression, element){    return function(element){      var self = this;      new Parser(expression).watch()({ @@ -231,11 +231,11 @@ function ngClass(selector) {    };  } -angularDirective("ng-class", ngClass(function(){return true;})); -angularDirective("ng-class-odd", ngClass(function(i){return i % 2 === 0;})); -angularDirective("ng-class-even", ngClass(function(i){return i % 2 === 1;})); +angularDirective("ng:class", ngClass(function(){return true;})); +angularDirective("ng:class-odd", ngClass(function(i){return i % 2 === 0;})); +angularDirective("ng:class-even", ngClass(function(i){return i % 2 === 1;})); -angularDirective("ng-show", function(expression, element){ +angularDirective("ng:show", function(expression, element){    return function(element){      this.$onEval(function(){        element.css('display', toBoolean(this.$eval(expression)) ? '' : 'none'); @@ -243,7 +243,7 @@ angularDirective("ng-show", function(expression, element){    };  }); -angularDirective("ng-hide", function(expression, element){ +angularDirective("ng:hide", function(expression, element){    return function(element){      this.$onEval(function(){        element.css('display', toBoolean(this.$eval(expression)) ? 'none' : ''); @@ -251,7 +251,7 @@ angularDirective("ng-hide", function(expression, element){    };  }); -angularDirective("ng-style", function(expression, element){ +angularDirective("ng:style", function(expression, element){    return function(element){      this.$onEval(function(){        element.css(this.$eval(expression));  | 
