mirror of
https://github.com/hacks-guide/2xrsa.git
synced 2024-11-23 09:29:39 +00:00
10 lines
397 B
JavaScript
10 lines
397 B
JavaScript
var fileref=document.createElement('link')
|
|
fileref.setAttribute('rel', 'stylesheet')
|
|
fileref.setAttribute('type', 'text/css')
|
|
fileref.setAttribute('href', './web.css')
|
|
if (navigator.platform.indexOf('Nintendo 3DS') > -1){
|
|
fileref.setAttribute('href', '/.3ds.css')
|
|
window.setInterval(function(){window.scrollTo(40,220);},50);
|
|
}
|
|
document.getElementsByTagName('head')[0].appendChild(fileref)
|