Team:Goettingen/suplement/scripts ie ff patch
From 2013.igem.org
(Difference between revisions)
m |
|||
(21 intermediate revisions not shown) | |||
Line 10: | Line 10: | ||
}; | }; | ||
- | + | if (window.scrollY == null) {window.scrollY = document.documentElement.scrollTop} | |
- | + | function getNextElementSibling(ob){ | |
- | + | ob = ob.nextSibling; | |
+ | while(ob.nodeType != 1){ob = ob.nextSibling} | ||
return ob; | return ob; | ||
} | } | ||
+ | |||
+ | if (!getComputedStyle) { | ||
+ | getComputedStyle = function(el, pseudo) { | ||
+ | this.el = el; | ||
+ | this.getPropertyValue = function(prop) { | ||
+ | var re = /(\-([a-z]){1})/g; | ||
+ | if (prop == 'float') prop = 'styleFloat'; | ||
+ | if (re.test(prop)) { | ||
+ | prop = prop.replace(re, function () { | ||
+ | return arguments[2].toUpperCase(); | ||
+ | }); | ||
+ | } | ||
+ | return el.currentStyle[prop] ? el.currentStyle[prop] : null; | ||
+ | } | ||
+ | return this; | ||
+ | } | ||
+ | } | ||
+ | |||
</script> | </script> | ||
</html> | </html> |
Latest revision as of 11:35, 15 September 2013