Skip to content
This repository was archived by the owner on Oct 5, 2020. It is now read-only.

Commit b86738c

Browse files
committed
Fixed in directives
1 parent 6237486 commit b86738c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

app/templates/ui/app/login/login.directive.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
return {
1010
restrict: 'EA',
1111
controller: 'LoginCtrl',
12-
controllerAs: 'ctrl',
12+
controllerAs: '$ctrl',
1313
replace: true,
1414
scope: {
1515
showCancel: '=',

app/templates/ui/app/message-board/message-board.directive.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
return {
1111
restrict: 'E',
1212
controller: 'MessageBoardController',
13-
controllerAs: 'ctrl',
13+
controllerAs: '$ctrl',
1414
replace: true,
1515
scope: {
1616
msg: '='

app/templates/ui/app/search/ml-snippet.directive.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
return {
1111
restrict: 'E',
1212
controller: 'SnippetCtrl',
13-
controllerAs: 'ctrl',
13+
controllerAs: '$ctrl',
1414
replace: true,
1515
scope: {
1616
setSnippet: '&'

app/templates/ui/app/user/ml-user.directive.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
return {
1111
restrict: 'EA',
1212
controller: 'UserCtrl',
13-
controllerAs: 'ctrl',
13+
controllerAs: '$ctrl',
1414
replace: true,
1515
scope: {
1616
showCancel: '=',

0 commit comments

Comments
 (0)