Ok it seems IE is suddenly having problems with rel="alternate stylesheet", namely, that such style sheets aren't enabled even if told to. For a temporary fix, find the line:
Code:
if(cacheobj.getAttribute("title") == title)
cacheobj.disabled = false //enable chosen style sheet
inside the .js file, and change that to:
Code:
if(cacheobj.getAttribute("title") == title){
cacheobj.disabled = false //enable chosen style sheet
cacheobj.setAttribute("rel", "stylesheet")
}
I'll have to investigate the issue more closely later and see if the patch should be added to the DD script itself.
Bookmarks