blob: 50376296bdf3de60785eb765286aee15676e8672 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!document html>
<html ng-app>
<head>
<meta charset="utf-8">
<title>locale test</title>
<script src="../../build/angular.js"></script>
<script src="../../build/i18n/angular-locale_cs.js"></script>
<script>
function AppCntl($scope){
$scope.input = 234234443432;
}
</script>
</head>
<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>
currency: {{input | currency }}
</body>
</html>
|