Merge pull request #2361 from TracksApp/remove-old-ie-support

Remove support for IE7 and IE8
This commit is contained in:
Matt Rogers 2020-03-14 10:05:33 -05:00 committed by GitHub
commit 23d4024f3d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1134,15 +1134,6 @@ function enable_rich_interaction(){
$(document).ready(function() {
// fix for IE7/8. Without this checkboxes don't work AJAXy. See #1152
var msie8 = /MSIE 8.0/.test(navigator.userAgent);
var msie7 = /MSIE 7.0/.test(navigator.userAgent);
if(msie8 || msie7) {
$('body').bind('change', function() {
return true;
});
}
TodoItemsContainer.setup_container_toggles();
/* enable page specific behavior */