UNPKG
ng-semantic-ui
Version:
latest (0.6.2)
0.6.2
0.6.1
0.6.0
0.5.1
0.5.0
Angular directives for Semantic-UI library
github.com/yfrans/ng-semantic-ui
yfrans/ng-semantic-ui
ng-semantic-ui
/
demo
/
script.js
8 lines
•
284 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
angular.
module
(
'demoApp'
, [
'ng-semantic-ui'
]) .
controller
(
'DropdownController'
,
function
(
$scope
) { $scope.
items
= [];
for
(
var
i =
1
; i <
11
; i++) { $scope.
items
.
push
(
'Item #'
+ i); } }) .
controller
(
'InputController'
,
function
(
) { });