diff options
| author | Igor Minar | 2013-01-09 16:07:34 -0800 |
|---|---|---|
| committer | Igor Minar | 2013-01-09 21:28:53 -0800 |
| commit | 7dff7bb69695f89046272bf31b2b60f0431f1f30 (patch) | |
| tree | e67b91cbc5d1e2194b10a444b6624e23ac0456e2 /regression | |
| parent | cdf6fb19c85560b30607e71dc2b19fde54760faa (diff) | |
| download | angular.js-7dff7bb69695f89046272bf31b2b60f0431f1f30.tar.bz2 | |
chore(*): remove obsolete files
Diffstat (limited to 'regression')
| -rw-r--r-- | regression/filter_repeater.html | 30 | ||||
| -rw-r--r-- | regression/issue-169.html | 10 | ||||
| -rw-r--r-- | regression/issue-352.html | 13 | ||||
| -rw-r--r-- | regression/issue-353.html | 18 | ||||
| -rw-r--r-- | regression/issue-584.html | 24 | ||||
| -rw-r--r-- | regression/ng_include_this.html | 9 | ||||
| -rw-r--r-- | regression/ng_include_this.partial | 1 | ||||
| -rw-r--r-- | regression/resource_json_date.html | 30 | ||||
| -rw-r--r-- | regression/resource_json_date.json | 1 | ||||
| -rw-r--r-- | regression/sanitizer.html | 8 |
10 files changed, 0 insertions, 144 deletions
diff --git a/regression/filter_repeater.html b/regression/filter_repeater.html deleted file mode 100644 index 0ff6111a..00000000 --- a/regression/filter_repeater.html +++ /dev/null @@ -1,30 +0,0 @@ -<!DOCTYPE HTML> -<html xmlns:ng="http://angularjs.org"> -<head> - <script type="text/javascript" src="../src/angular-bootstrap.js" ng:autobind></script> -</head> -<body ng:init="$window.$root = this; data = [{foo: 'foo'},{bar: 'bar'}]"> - <p>This is a demo of a potential bug in angular.</p> - <p>Try the following:</p> - <ol> - <li> Type "foo" on the filter box. - <li> Clear the contents of the filter box. - <li> Type "bar" on the filter box. - <li> Clear the contents of the filter box. - </ol> - <p>Why doesn't the data goes back to the original?</p> - <hr> - Input: <input type="text" ng:model="filterName" id="filterInputField"/> - <br/> - <table ng:eval="filtered_data = data.$filter(filterName)" style="border: 1px solid black"> - <tr> - <th>Foo</th> - <th>Bar</th> - </tr> - <tr ng:repeat="record in filtered_data"> - <td>{{record.foo}}</td> - <td>{{record.bar}}</td> - </tr> - </table> -</body> -</html>
\ No newline at end of file diff --git a/regression/issue-169.html b/regression/issue-169.html deleted file mode 100644 index 80902dc2..00000000 --- a/regression/issue-169.html +++ /dev/null @@ -1,10 +0,0 @@ -<!DOCTYPE HTML> -<html xmlns:ng="http://angularjs.org"> - <script type="text/javascript" src="../src/angular-bootstrap.js" ng:autobind></script> - <body> - <span ng:init='x = {d:3}; x1 = {bar:[x,5]}; x1.bar[0].d = 4'> - <input ng:model="x1.bar[0].d" type="text"></input> - <input ng:model="x.d" type="text"></input> - <span> {{x1}} -- {{x1.bar[0].d}}</span> - </body> -</html>
\ No newline at end of file diff --git a/regression/issue-352.html b/regression/issue-352.html deleted file mode 100644 index c93d4aa4..00000000 --- a/regression/issue-352.html +++ /dev/null @@ -1,13 +0,0 @@ -<!DOCTYPE HTML> -<html xmlns:ng="http://angularjs.org"> - <script type="text/javascript" src="../build/angular.js" ng:autobind></script> - <body ng:init="scope = { itemId: 12345 }"> - <input ng:model="value" /><br /> - <a id="link-1" href ng:click="value = 1">link 1</a> (link, don't reload)<br /> - <a id="link-2" href="" ng:click="value = 2">link 2</a> (link, don't reload)<br /> - <a id="link-3" ng:href="#{{'123'}}" ng:click="value = 3">link 3</a> (link, reload!)<br /> - <a id="link-4" href="" ng:model="xx" ng:click="value = 4">anchor</a> (link, don't reload)<br /> - <a id="link-5" ng:model="xxx" ng:click="value = 5">anchor</a> (no link)<br /> - <a id="link-6" ng:href="#/{{value}}">link</a> (link, change hash) - </body> -</html> diff --git a/regression/issue-353.html b/regression/issue-353.html deleted file mode 100644 index e3569197..00000000 --- a/regression/issue-353.html +++ /dev/null @@ -1,18 +0,0 @@ -<!DOCTYPE HTML> -<html xmlns:ng="http://angularjs.org"> - <script type="text/javascript" src="../build/angular.js" ng:autobind></script> - <script type="text/javascript"> - function Cntl($route) { - $route.when('/item1', {}); - $route.when('/item2', {}); - $route.onChange(function() { - alert('change'); - }); - } - Cntl.$inject = ['$route']; - </script> - <body ng:controller="Ctrl"> - <a href="#/item1">test</a> - <a href="#/item2">test</a> - </body> -</html> diff --git a/regression/issue-584.html b/regression/issue-584.html deleted file mode 100644 index 84e5e732..00000000 --- a/regression/issue-584.html +++ /dev/null @@ -1,24 +0,0 @@ -<!DOCTYPE html> -<html xmlns:ng="http://angularjs.org" xmlns:my="http://mynamespace.org"> - <head> - <style> - my\:time {color:#00f;display:block;border:1px solid #ccc;background-color:#ddd;} - </style> - <script src="../build/angular.js" ng:autobind></script> - <script> - angular.widget('my:time', function(compileElement){ - compileElement.css('display', 'block'); - return function(linkElement) { - function update() { - linkElement.text('Current time is: ' + new Date()); - setTimeout(update, 1000); - } - update(); - }; - }); - </script> - </head> - <body> - <my:time></my:time> - </body> -</html> diff --git a/regression/ng_include_this.html b/regression/ng_include_this.html deleted file mode 100644 index 3138ed07..00000000 --- a/regression/ng_include_this.html +++ /dev/null @@ -1,9 +0,0 @@ -<!DOCTYPE HTML> -<html xmlns:ng="http://angularjs.org"> -<head> - <script type="text/javascript" src="../src/angular-bootstrap.js" ng:autobind></script> -</head> -<body ng:init="$window.$root = this; data = [{foo: 'foo'},{bar: 'bar'}]"> - <ng:include src="'ng_include_this.partial'" scope="this"/> -</body> -</html>
\ No newline at end of file diff --git a/regression/ng_include_this.partial b/regression/ng_include_this.partial deleted file mode 100644 index a4673196..00000000 --- a/regression/ng_include_this.partial +++ /dev/null @@ -1 +0,0 @@ -included HTML. eval count: {{c=c+1}}
\ No newline at end of file diff --git a/regression/resource_json_date.html b/regression/resource_json_date.html deleted file mode 100644 index 4b85a9f1..00000000 --- a/regression/resource_json_date.html +++ /dev/null @@ -1,30 +0,0 @@ -<!DOCTYPE HTML> -<html xmlns:ng="http://angularjs.org"> -<head> - <script type="text/javascript" src="../src/angular-bootstrap.js" ng:autobind></script> - </script> - <script type="text/javascript"> - angular.module.ng('myService', function($resource){ - this.myData = $resource('resource_json_date.json'); - }, {$inject:['$resource'], $creation:'eager'}); - - /* The Controller object */ - MyController = function() { - this.inlineData = angular.fromJson('{reportDate:"2010-10-13T17:37:00Z"}'); - this.jsonData = this.myData.get(); - }; - - - - </script> -</head> -<body ng:controller="MyController" ng:init="$window.$root = this"> - <h3>This data is loaded with angular.fromJson:</h3> - {{ inlineData.reportDate | date }} - <hr/> - <h3>This data is loaded from a resource using a service:</h3> - <p>Name: {{ jsonData.name }}</p> - <p>Parsed date: {{ jsonData.reportDate }} (A date should be displayed here)</p> - -</body> -</html> diff --git a/regression/resource_json_date.json b/regression/resource_json_date.json deleted file mode 100644 index 78f70cb3..00000000 --- a/regression/resource_json_date.json +++ /dev/null @@ -1 +0,0 @@ -{reportDate:"2010-10-13T17:37:00Z", name:"camilo"}
\ No newline at end of file diff --git a/regression/sanitizer.html b/regression/sanitizer.html deleted file mode 100644 index b44ae5ed..00000000 --- a/regression/sanitizer.html +++ /dev/null @@ -1,8 +0,0 @@ -<!DOCTYPE HTML> -<html xmlns:ng="http://angularjs.org"> - <script type="text/javascript" src="../src/angular-bootstrap.js" ng:autobind></script> - <body> - <textarea ng:model="html" rows="10" cols="100"></textarea> - <div>{{html|html}}</div> - </body> -</html>
\ No newline at end of file |
