File tree 1 file changed +3
-3
lines changed
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):
79
79
$scope.checked = false;
80
80
$scope.toggleCheckbox = function(){
81
81
$scope.checked = !$scope.checked;
82
- }
82
+ };
83
83
})
84
84
.directive('someCheckbox', function(){
85
85
return {
@@ -93,7 +93,7 @@ attributes (if they have not been explicitly specified by the developer):
93
93
}
94
94
});
95
95
}
96
- }
96
+ };
97
97
})
98
98
.directive('showAttrs', function() {
99
99
return function($scope, $el, $attrs) {
@@ -110,7 +110,7 @@ attributes (if they have not been explicitly specified by the developer):
110
110
}, function(newAttrs, oldAttrs) {
111
111
pre.textContent = JSON.stringify(newAttrs, null, 2);
112
112
}, true);
113
- }
113
+ };
114
114
});
115
115
</file>
116
116
<file name="style.css">
You can’t perform that action at this time.
0 commit comments