Skip to content
This repository was archived by the owner on May 29, 2019. It is now read-only.

Commit dd4f3cc

Browse files
jvanbouchautewesleycho
authored andcommitted
fix(modal): remove illegal character
- Remove bad character masquerading as a space Closes #3893 Fixes #3892
1 parent 3316d3e commit dd4f3cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/modal/modal.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ angular.module('ui.bootstrap.modal', [])
212212
//move focus to specified element if available, or else to body
213213
if (elementToReceiveFocus && elementToReceiveFocus.focus) {
214214
elementToReceiveFocus.focus();
215-
} else {
215+
} else {
216216
body.focus();
217217
}
218218
}

0 commit comments

Comments
 (0)