Skip to content
Snippets Groups Projects
Commit d2b9a37e authored by Tim Steiner's avatar Tim Steiner
Browse files

Fix for help popups in IE

parent 7739d26a
Branches
Tags
No related merge requests found
...@@ -52,6 +52,11 @@ $(document).ready(function() { ...@@ -52,6 +52,11 @@ $(document).ready(function() {
$('[target=helpWindow]').click(helpLinkClicked); $('[target=helpWindow]').click(helpLinkClicked);
// Fix for IE :-(
$('input[type=checkbox]').click(function() {
this.blur();
});
}); });
function helpLinkClicked() function helpLinkClicked()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment