UNPKG
atom-lupa
Version:
latest (0.7.15)
0.7.15
0.7.9
0.7.8
0.7.7
0.7.6
0.5.77
0.5.43
0.5.42
0.5.36
0.5.35
0.4.165
Navigation bar and breadcrumbs
github.com/hex13/atom-lupa
hex13/atom-lupa
atom-lupa
/
ng.js
19 lines
(15 loc)
•
360 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
(
function
()
{ angular.
module
(
'blah'
) .directive(
'Cat'
,
function
()
{
return
{ restrict:
'E'
, template:
'Hello Kitty'
}; }) .directive(
'Dog'
,
function
()
{
return
{ restrict:
'E'
, template:
'Wow'
}; }); })();