Skip to content

Commit

Permalink
fix(modal): remove illegal character
Browse files Browse the repository at this point in the history
- Remove bad character masquerading as a space

Closes angular-ui#3893
Fixes angular-ui#3892
  • Loading branch information
jvanbouchaute authored and wesleycho committed Jul 4, 2015
1 parent 3316d3e commit dd4f3cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modal/modal.js
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ angular.module('ui.bootstrap.modal', [])
//move focus to specified element if available, or else to body
if (elementToReceiveFocus && elementToReceiveFocus.focus) {
elementToReceiveFocus.focus();
} else {
} else {
body.focus();
}
}
Expand Down

0 comments on commit dd4f3cc

Please sign in to comment.