dotjs/jenkins.banksimple.com.js @ 221dd87c701b
Remove ooze, bencode
author |
Steve Losh <steve@stevelosh.com> |
date |
Fri, 18 Aug 2017 12:12:26 -0400 |
parents |
d38d836fda13 |
children |
(none) |
var css = '* { -webkit-transition: none !important; -moz-transition: none !important; -o-transition: none !important; -ms-transition: none !important; transition: none !important; }'
var head = document.head || document.getElementsByTagName('head')[0]
var style = document.createElement('style');
style.type = 'text/css';
if (style.styleSheet){
style.styleSheet.cssText = css;
} else {
style.appendChild(document.createTextNode(css));
}
head.appendChild(style);