diff options
| author | Misko Hevery | 2012-01-06 18:10:47 -0800 | 
|---|---|---|
| committer | Misko Hevery | 2012-01-10 22:27:00 -0800 | 
| commit | 5143e7bf065a3cbdf8400cf095b653d51bc83b8f (patch) | |
| tree | 980149c365d4cb5586d27975d26366a25ff7be6a /example | |
| parent | afd25446d23f24872eb20ac79c8fbd2cff203ef0 (diff) | |
| download | angular.js-5143e7bf065a3cbdf8400cf095b653d51bc83b8f.tar.bz2 | |
feat(module): new module loader
Diffstat (limited to 'example')
| -rw-r--r-- | example/personalLog/personalLog.html | 4 | ||||
| -rw-r--r-- | example/temp.html | 4 | 
2 files changed, 4 insertions, 4 deletions
diff --git a/example/personalLog/personalLog.html b/example/personalLog/personalLog.html index 4f74a402..bc7e2e25 100644 --- a/example/personalLog/personalLog.html +++ b/example/personalLog/personalLog.html @@ -1,8 +1,8 @@  <!doctype html> -<html xmlns:ng="http://angularjs.org"> +<html xmlns:ng="http://angularjs.org" ng:app>    <head>      <title>Personal Log</title> -    <script type="text/javascript" src="../../src/angular-bootstrap.js" ng:autobind></script> +    <script type="text/javascript" src="../../src/angular-bootstrap.js"></script>      <script type="text/javascript" src="personalLog.js"></script>    </head> diff --git a/example/temp.html b/example/temp.html index 41fb4746..e12b4437 100644 --- a/example/temp.html +++ b/example/temp.html @@ -1,8 +1,8 @@  <!doctype html> -<html xmlns:ng="http://angularjs.org"> +<html xmlns:ng="http://angularjs.org" ng:app>    <head>      <title>angular dev sandbox</title> -    <script src="../src/angular-bootstrap.js" ng:autobind></script> +    <script src="../src/angular-bootstrap.js"></script>      <script>      angular.module.ng('routeConfig', function($route) {            $route.when('/view1', {controller: MyCtrl, template: 'view1.html'});  | 
