style: add missing semicolons

This commit is contained in:
Joao Dias
2016-10-23 22:52:57 +02:00
committed by vsavkin
parent 52bf188b8f
commit a382d6dd20
15 changed files with 29 additions and 32 deletions

View File

@ -39,7 +39,7 @@ angular.module('app', [])
return {
compile: function($element, $attrs) {
var expr = $parse($attrs.attr0);
return function($scope) { $scope.$watch(expr, angular.noop); }
return ($scope) => $scope.$watch(expr, angular.noop);
}
};
}
@ -51,7 +51,7 @@ angular.module('app', [])
return {
compile: function($element, $attrs) {
var expr = $parse($attrs.attr1);
return function($scope) { $scope.$watch(expr, angular.noop); }
return ($scope) => $scope.$watch(expr, angular.noop);
}
};
}
@ -63,7 +63,7 @@ angular.module('app', [])
return {
compile: function($element, $attrs) {
var expr = $parse($attrs.attr2);
return function($scope) { $scope.$watch(expr, angular.noop); }
return ($scope) => $scope.$watch(expr, angular.noop);
}
};
}
@ -75,7 +75,7 @@ angular.module('app', [])
return {
compile: function($element, $attrs) {
var expr = $parse($attrs.attr3);
return function($scope) { $scope.$watch(expr, angular.noop); }
return ($scope) => $scope.$watch(expr, angular.noop);
}
};
}
@ -87,7 +87,7 @@ angular.module('app', [])
return {
compile: function($element, $attrs) {
var expr = $parse($attrs.attr4);
return function($scope) { $scope.$watch(expr, angular.noop); }
return ($scope) => $scope.$watch(expr, angular.noop);
}
};
}