diff options
Diffstat (limited to 'i18n/e2e/localeTest_de.html')
| -rw-r--r-- | i18n/e2e/localeTest_de.html | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/i18n/e2e/localeTest_de.html b/i18n/e2e/localeTest_de.html index 931c56dd..8618c44d 100644 --- a/i18n/e2e/localeTest_de.html +++ b/i18n/e2e/localeTest_de.html @@ -5,9 +5,14 @@ <title>locale test</title> <script src="../../build/angular.js" ng:autobind></script> <script src="../../build/i18n/angular-locale_de.js"></script> + <script> + function AppCntl(){ + this.input = 234234443432; + } + </script> </head> - <body> - <input type="text" name="input" value="234234443432"><br> + <body ng:controller="AppCntl"> + <input type="text" ng:model="input"><br> date: {{input | date:"medium"}}<br> date: {{input | date:"longDate"}}<br> number: {{input | number}}<br> |
