(trunk web) #4168 "web client in r13075 not working in IE8" -- fixed, sort of.

IE8 can't handle the W3C method of stacking an image on a linear gradient. Since all supported browsers have other ways besides the W3C method of doing this, we can 'fix' this by removing the W3C method. At some point in the future when browsers all use the W3C method, we can look for a different solution, or drop IE8 support ;)
This commit is contained in:
Jordan Lee
2011-11-11 04:44:49 +00:00
parent b3d382874a
commit 1f97292ec7
3 changed files with 1313 additions and 204 deletions

View File

@@ -34,11 +34,6 @@ $.fn.tabbedDialog = function (dialog_opts) {
}
$(document).ready(function() {
// Initialise the dialog controller
dialog = new Dialog();
// Initialise the main Transmission controller
transmission = new Transmission();
// IE8 and below dont support ES5 Date.now()
if (!Date.now) {
@@ -47,6 +42,12 @@ $(document).ready(function() {
};
}
// Initialise the dialog controller
dialog = new Dialog();
// Initialise the main Transmission controller
transmission = new Transmission();
// IE specific fixes here
if ($.browser.msie) {
try {