-
-
Save os0x/215871 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function insertSITEINFO(callback,thisObject){ | |
if (Set.DISABLE_IFRAME && window.parent !== window) return; | |
var src = (Set.SITEINFO_SERVER) ? Set.SITEINFO_SERVER + 'get?url=' + encodeURIComponent(location.href) : 'http://ss-o.net/json/wedataAutoPagerizeSITEINFO.js'; | |
var sc = document.createElementNS(HTML_NAMESPACE, 'script'); | |
sc.type = 'text/javascript'; | |
window.AutoPagerizeCallbackSiteinfo = function(res){ | |
callback.call(thisObject,res); | |
window.AutoPagerizeCallbackSiteinfo = null; | |
sc.parentNode.removeChild(sc); | |
var ev = document.createEvent('Event'); | |
ev.initEvent('GM_AutoPagerizeSiteinfoLoaded', true, false); | |
document.dispatchEvent(ev); | |
}; | |
sc.src = src; | |
function insert(){(document.body || document.documentElement).appendChild(sc);} | |
if (window.opera && document.readyState == 'interactive') document.addEventListener('DOMContentLoaded',insert,false); | |
else insert(); | |
} | |
if (window.opera && document.readyState == 'interactive') { | |
document.addEventListener('GM_AutoPagerizeSiteinfoLoaded',autopager,false); | |
document.addEventListener('DOMContentLoaded',autopager,false); | |
} else autopager(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment