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 /i18n/e2e | |
| parent | afd25446d23f24872eb20ac79c8fbd2cff203ef0 (diff) | |
| download | angular.js-5143e7bf065a3cbdf8400cf095b653d51bc83b8f.tar.bz2 | |
feat(module): new module loader
Diffstat (limited to 'i18n/e2e')
| -rw-r--r-- | i18n/e2e/localeTest_cs.html | 4 | ||||
| -rw-r--r-- | i18n/e2e/localeTest_de.html | 4 | ||||
| -rw-r--r-- | i18n/e2e/localeTest_en.html | 4 | ||||
| -rw-r--r-- | i18n/e2e/localeTest_es.html | 4 | ||||
| -rw-r--r-- | i18n/e2e/localeTest_sk.html | 4 | ||||
| -rw-r--r-- | i18n/e2e/localeTest_zh.html | 4 |
6 files changed, 12 insertions, 12 deletions
diff --git a/i18n/e2e/localeTest_cs.html b/i18n/e2e/localeTest_cs.html index 2d8845a2..0d26cc5d 100644 --- a/i18n/e2e/localeTest_cs.html +++ b/i18n/e2e/localeTest_cs.html @@ -1,9 +1,9 @@ <!document html> -<html> +<html ng-app> <head> <meta charset="utf-8"> <title>locale test</title> - <script src="../../build/angular.js" ng:autobind></script> + <script src="../../build/angular.js"></script> <script src="../../build/i18n/angular-locale_cs.js"></script> <script> function AppCntl(){ diff --git a/i18n/e2e/localeTest_de.html b/i18n/e2e/localeTest_de.html index 8618c44d..1873d535 100644 --- a/i18n/e2e/localeTest_de.html +++ b/i18n/e2e/localeTest_de.html @@ -1,9 +1,9 @@ <!document html> -<html> +<html ng-app> <head> <meta charset="utf-8"> <title>locale test</title> - <script src="../../build/angular.js" ng:autobind></script> + <script src="../../build/angular.js"></script> <script src="../../build/i18n/angular-locale_de.js"></script> <script> function AppCntl(){ diff --git a/i18n/e2e/localeTest_en.html b/i18n/e2e/localeTest_en.html index de77681b..9a69bb59 100644 --- a/i18n/e2e/localeTest_en.html +++ b/i18n/e2e/localeTest_en.html @@ -1,9 +1,9 @@ <!document html> -<html> +<html ng-app> <head> <meta charset="utf-8"> <title>locale test</title> - <script src="../../build/angular.js" ng:autobind></script> + <script src="../../build/angular.js"></script> <!-- not needed, already bundled in angular.js <script src="../../build/i18n/angular-locale_en.js"></script> --> diff --git a/i18n/e2e/localeTest_es.html b/i18n/e2e/localeTest_es.html index 50c8c076..9584e34e 100644 --- a/i18n/e2e/localeTest_es.html +++ b/i18n/e2e/localeTest_es.html @@ -1,9 +1,9 @@ <!document html> -<html> +<html ng-app> <head> <meta charset="utf-8"> <title>locale test</title> - <script src="../../build/angular.js" ng:autobind></script> + <script src="../../build/angular.js"></script> <script src="../../build/i18n/angular-locale_es.js"></script> <script> function AppCntl(){ diff --git a/i18n/e2e/localeTest_sk.html b/i18n/e2e/localeTest_sk.html index ab0bb2a5..18902ac0 100644 --- a/i18n/e2e/localeTest_sk.html +++ b/i18n/e2e/localeTest_sk.html @@ -1,9 +1,9 @@ <!document html> -<html> +<html ng-app> <head> <meta charset="utf-8"> <title>locale test</title> - <script src="../../build/angular.js" ng:autobind></script> + <script src="../../build/angular.js"></script> <script src="../../build/i18n/angular-locale_sk-sk.js"></script> <script> function AppCntl(){ diff --git a/i18n/e2e/localeTest_zh.html b/i18n/e2e/localeTest_zh.html index 3ccad5ed..b25b3c4d 100644 --- a/i18n/e2e/localeTest_zh.html +++ b/i18n/e2e/localeTest_zh.html @@ -1,9 +1,9 @@ <!document html> -<html> +<html ng-app> <head> <meta charset="utf-8"> <title>locale test</title> - <script src="../../build/angular.js" ng:autobind></script> + <script src="../../build/angular.js"></script> <script src="../../build/i18n/angular-locale_zh-cn.js"></script> <script> function AppCntl(){ |
