We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fe28a0 commit aee7f1cCopy full SHA for aee7f1c
1 file changed
docs/content/guide/accessibility.ngdoc
@@ -79,7 +79,7 @@ attributes (if they have not been explicitly specified by the developer):
79
$scope.checked = false;
80
$scope.toggleCheckbox = function(){
81
$scope.checked = !$scope.checked;
82
- }
+ };
83
})
84
.directive('someCheckbox', function(){
85
return {
@@ -93,7 +93,7 @@ attributes (if they have not been explicitly specified by the developer):
93
}
94
});
95
96
97
98
.directive('showAttrs', function() {
99
return function($scope, $el, $attrs) {
@@ -110,7 +110,7 @@ attributes (if they have not been explicitly specified by the developer):
110
}, function(newAttrs, oldAttrs) {
111
pre.textContent = JSON.stringify(newAttrs, null, 2);
112
}, true);
113
114
115
</file>
116
<file name="style.css">
0 commit comments