change all attributes from ng- to ng: prefix

This commit is contained in:
Misko Hevery
2010-07-02 15:39:47 -07:00
parent 105e9443c4
commit 1f05621509
25 changed files with 260 additions and 255 deletions

View File

@@ -20,12 +20,12 @@
};
</script>
</head>
<body ng:init="$window.$scope = this; items = createItems()" ng-controller="PerfCntl">
<body ng:init="$window.$scope = this; items = createItems()" ng:controller="PerfCntl">
<input type="text" name="text"/>
<hr/>
<ul>
<li Xng-repeat="item in items.$filter('').$orderBy('name')"
ng-repeat="item in items">
<li Xng:repeat="item in items.$filter('').$orderBy('name')"
ng:repeat="item in items">
{{item.name}} <a href="#{{item.name}}">{{item.parts.join(', ')}}</a>
</li>
</ul>