Skip to content
This repository was archived by the owner on Sep 5, 2024. It is now read-only.

Commit 9f458f6

Browse files
Splaktarmmalerba
authored andcommitted
style(lint): fix missing space in checkbox.js (#11630)
Relates to #11584.
1 parent 46e08e5 commit 9f458f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/checkbox/checkbox.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ function MdCheckboxDirective(inputDirective, $mdAria, $mdConstant, $mdTheming, $
172172
function keypressHandler(ev) {
173173
var keyCode = ev.which || ev.keyCode;
174174
ev.preventDefault();
175-
switch(keyCode) {
175+
switch (keyCode) {
176176
case $mdConstant.KEY_CODE.SPACE:
177177
element.addClass('md-focused');
178178
listener(ev);

0 commit comments

Comments
 (0)