Skip to content

Commit a479e65

Browse files
committed
docs(guide/accessibility): make jshint happy
1 parent b89c218 commit a479e65

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/content/guide/accessibility.ngdoc

+3-3
Original file line numberDiff line numberDiff 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">

0 commit comments

Comments
 (0)