diff options
Diffstat (limited to 'i18n/e2e/localeTest_es.html')
| -rw-r--r-- | i18n/e2e/localeTest_es.html | 9 | 
1 files changed, 7 insertions, 2 deletions
diff --git a/i18n/e2e/localeTest_es.html b/i18n/e2e/localeTest_es.html index bb426923..50c8c076 100644 --- a/i18n/e2e/localeTest_es.html +++ b/i18n/e2e/localeTest_es.html @@ -5,9 +5,14 @@      <title>locale test</title>      <script src="../../build/angular.js" ng:autobind></script>      <script src="../../build/i18n/angular-locale_es.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" value="234234443432"><br>      date: {{input | date:"medium"}}<br>      date: {{input | date:"longDate"}}<br>      number: {{input | number}}<br>  | 
