File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ attributes (if they have not been explicitly specified by the developer):
7979 $scope.checked = false;
8080 $scope.toggleCheckbox = function(){
8181 $scope.checked = !$scope.checked;
82- }
82+ };
8383 })
8484 .directive('someCheckbox', function(){
8585 return {
@@ -93,7 +93,7 @@ attributes (if they have not been explicitly specified by the developer):
9393 }
9494 });
9595 }
96- }
96+ };
9797 })
9898 .directive('showAttrs', function() {
9999 return function($scope, $el, $attrs) {
@@ -110,7 +110,7 @@ attributes (if they have not been explicitly specified by the developer):
110110 }, function(newAttrs, oldAttrs) {
111111 pre.textContent = JSON.stringify(newAttrs, null, 2);
112112 }, true);
113- }
113+ };
114114 });
115115 </file>
116116 <file name="style.css">
You can’t perform that action at this time.
0 commit comments