diff options
Diffstat (limited to 'i18n/e2e/localeTest_es.html')
| -rw-r--r-- | i18n/e2e/localeTest_es.html | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/i18n/e2e/localeTest_es.html b/i18n/e2e/localeTest_es.html index 9584e34e..7f8333a6 100644 --- a/i18n/e2e/localeTest_es.html +++ b/i18n/e2e/localeTest_es.html @@ -6,13 +6,13 @@      <script src="../../build/angular.js"></script>      <script src="../../build/i18n/angular-locale_es.js"></script>      <script> -      function AppCntl(){ -        this.input = 234234443432; +      function AppCntl($scope){ +        $scope.input = 234234443432;        }      </script>    </head> -  <body ng:controller="AppCntl"> -    <input type="text" ng:model="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> | 
