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