mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-20 17:20:12 +01:00
fix #1152 where in IE8 the checkboxes did not work
This commit is contained in:
parent
57ad48d7d7
commit
12c02b1a87
1 changed files with 9 additions and 0 deletions
|
|
@ -1208,6 +1208,15 @@ function enable_rich_interaction(){
|
|||
}
|
||||
|
||||
$(document).ready(function() {
|
||||
|
||||
// fix for IE8. Without this checkboxes don't work AJAXy. See #1152
|
||||
if($.browser.msie && ($.browser.version.substring(0, 2) == "8.")) {
|
||||
alert("detected msie8");
|
||||
$('body').bind('change', function() {
|
||||
return true;
|
||||
});
|
||||
}
|
||||
|
||||
TracksPages.setup_nifty_corners();
|
||||
|
||||
TodoItemsContainer.setup_container_toggles();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue