-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathdemo.html
20 lines (20 loc) · 965 Bytes
/
demo.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE HTML>
<html ng-app="ratingApp">
<head>
<meta charset="utf-8" />
<title>Semantic UI + Angular.JS</title>
<link href="../../../bower_components/semantic/dist/semantic.min.css" rel="stylesheet" type="text/css" />
</head>
<body ng-controller="RootCtrl">
<rating class="massive heart" ng-model="rate" max="6" on-rate="rated(rate);"></rating>
<p>Rate is {{ rate }}.</p>
<rating class="massive heart" ng-model="clearable_rate" clearable="true"></rating>
<p>Rate is {{ clearable_rate }}.</p>
<rating class="massive heart" ng-model="fixed_rate" interactive="false"></rating>
<p>Rate is {{ fixed_rate }}.</p>
<script src="../../../bower_components/angular/angular.min.js" type="text/javascript"></script>
<script src="../../angularify.semantic.js" type="text/javascript"></script>
<script src="../rating.js" type="text/javascript"></script>
<script src="controllers.js" type="text/javascript"></script>
</body>
</html>