2011-07-29 21:22:37 +00:00
|
|
|
<!document html>
|
2012-01-07 02:10:47 +00:00
|
|
|
<html ng-app>
|
2011-08-18 00:27:15 +00:00
|
|
|
<head>
|
2011-07-29 21:22:37 +00:00
|
|
|
<meta charset="utf-8">
|
|
|
|
|
<title>locale test</title>
|
2012-01-07 02:10:47 +00:00
|
|
|
<script src="../../build/angular.js"></script>
|
2011-07-29 21:22:37 +00:00
|
|
|
<script src="../../build/i18n/angular-locale_cs.js"></script>
|
2011-09-08 20:56:29 +00:00
|
|
|
<script>
|
2012-03-28 18:16:10 +00:00
|
|
|
function AppCntl($scope){
|
|
|
|
|
$scope.input = 234234443432;
|
2011-09-08 20:56:29 +00:00
|
|
|
}
|
|
|
|
|
</script>
|
2011-07-29 21:22:37 +00:00
|
|
|
</head>
|
2012-03-28 18:16:10 +00:00
|
|
|
<body ng-controller="AppCntl">
|
|
|
|
|
<input type="text" ng-model="input"><br>
|
2011-07-29 21:22:37 +00:00
|
|
|
date: {{input | date:"medium"}}<br>
|
|
|
|
|
date: {{input | date:"longDate"}}<br>
|
|
|
|
|
number: {{input | number}}<br>
|
|
|
|
|
currency: {{input | currency }}
|
|
|
|
|
</body>
|
2011-08-18 00:27:15 +00:00
|
|
|
</html>
|