Files
gulp-angular-cloak/fixtures/angular-complex.html
2014-04-05 12:16:22 +03:00

21 lines
587 B
HTML

<!DOCTYPE html>
<html ng-app="myApp">
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>fixture</title>
</head>
<body ng-controller="MainCtrl">
<div ng-class="{active:somethingForNothing()}">
<span ng-if="rainbows()"></span>
</div>
<ng-include="index.html"></ng-include>
<ng-pluralize count="personCount" when="{'0': 'Nobody is viewing.',
'one': '1 person is viewing.',
'other': '{} people are viewing.'}" />
</body>
</html>