UNPKG
linx-app-component-ui
Version:
latest (1.0.1)
1.0.1
linx-app-component-ui
linx-app-component-ui
/
src
/
scripts
/
directives
/
lxSample
/
sampleController.js
17 lines
(10 loc)
•
274 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
'use strict'
;
function
SampleDirectiveController
(
$scope
) {
var
vm =
this
; vm.
init
= init;
function
init
(
) { } }
module
.
exports
=
function
(
appModule
) { appModule.
controller
(
'sampleDirectiveController'
,
SampleDirectiveController
); };