UNPKG
ngbootbox
Version:
latest (0.2.0)
0.2.0
0.1.2
AngularJS wrapper for bootbox.js
github.com/eriktufvesson/ngBootbox
eriktufvesson/ngBootbox
ngbootbox
/
examples
/
example-1
/
custom-dialog.tpl.html
12 lines
(11 loc)
•
299 B
HTML
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
<
div
ng-controller
=
"CustomCtrl"
>
<
h1
>
This is a HTML template!
</
h1
>
<
p
>
Some text...
</
p
>
<
h2
>
A list
</
h2
>
<
ul
>
<
li
ng-repeat
=
"item in items"
>
{{item.name}}
</
li
>
</
ul
>
<
button
class
=
"btn btn-primary"
ng-click
=
"buttonClick()"
>
A button
</
button
>
</
div
>