mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
fixes #179 - IE10 New Collection Refresh
This commit is contained in:
parent
e8d26d4158
commit
b0cf6b256f
1 changed files with 9 additions and 0 deletions
|
@ -16,6 +16,15 @@
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if ($.browser.msie) {
|
||||||
|
|
||||||
|
// This is unfortuantely required due to IE's over-aggressive caching.
|
||||||
|
// https://github.com/MediaBrowser/MediaBrowser/issues/179
|
||||||
|
$.ajaxSetup({
|
||||||
|
cache: false
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
$.support.cors = true;
|
$.support.cors = true;
|
||||||
|
|
||||||
$(document).one('click', WebNotifications.requestPermission);
|
$(document).one('click', WebNotifications.requestPermission);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue