UNPKG
unserver-unify
Version:
latest (0.2.0)
0.2.0
unserver-unify
/
src
/
components
/
content
/
bookmark.directive.js
11 lines
(10 loc)
•
292 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
angular.
module
(
'bamboo.course'
).directive(
"mybookmark"
,
function
()
{
return
{ restrict:
'AE'
, templateUrl:
'components/content/bookmark.html'
, controller:
'bookmarkCtrl as favCtrl'
, replace:
'true'
, link:
function
(scope, elem, attrs)
{ } }; });