OXIESEC PANEL
- Current Dir:
/
/
home
/
cubot
/
docroot
/
assets
/
plugins
/
revolution-slider
/
documentation
/
assets
/
js
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/14/2022 11:10:37 AM
rwxr-xr-x
📄
README.md
3.17 KB
08/14/2022 11:10:37 AM
rw-r--r--
📄
bootstrap-min.js
21.82 KB
08/14/2022 11:10:37 AM
rw-r--r--
📁
google-code-prettify
-
08/14/2022 11:10:37 AM
rwxr-xr-x
📄
jquery.easing.js
8.11 KB
08/14/2022 11:10:37 AM
rw-r--r--
📄
jquery.js
242.01 KB
08/14/2022 11:10:37 AM
rw-r--r--
📄
jquery.scrollTo.js
2.22 KB
08/14/2022 11:10:37 AM
rw-r--r--
📄
scripts.js
1.84 KB
08/14/2022 11:10:37 AM
rw-r--r--
Editing: scripts.js
Close
/*! * Documenter 2.0 * http://rxa.li/documenter * * Copyright 2011, Xaver Birsak * http://revaxarts.com * */ !function ($) { $(function(){ var hash = location.hash || null, win = $(window), scrolloffset = $('div.navbar').height()+40, iDeviceNotOS4 = (navigator.userAgent.match(/iphone|ipod|ipad/i) && !navigator.userAgent.match(/OS 5/i)) || false, badIE = $('html').prop('class').match(/ie(6|7|8)/)|| false; duration = parseInt(duration,10); $('.dropdown-toggle').dropdown(); $('.navbar').scrollspy(); $(".collapse").collapse(); //handle external links (new window) $('a[href^=http]').bind('click',function(){ window.open($(this).attr('href')); return false; }); //IE 8 and lower doesn't like the smooth pagescroll if(!badIE){ window.scroll(0,0); $('a[href^=#]').bind('click touchstart',function(){ hash = $(this).attr('href'); $.scrollTo.window().queue([]).stop(); goTo(hash, true); return false; }); //if a hash is set => go to it if(hash){ setTimeout(function(){ goTo(hash); },500); } } $('.brand').on('click', function(){ goTo('#container', false); }); //the function is called when the hash changes function hashchange(){ goTo(location.hash, false); } //scroll to a section and set the hash function goTo(hash,changehash){ win.unbind('hashchange', hashchange); hash = hash.replace(/!\//,''); win.stop().scrollTo(hash,duration,{ offset:-scrolloffset, easing:easing, axis:'y' }); if(changehash !== false){ var l = location; location.href = (l.protocol+'//'+l.host+l.pathname+'#!/'+hash.substr(1)); location.hash = hash.substr(1); } win.bind('hashchange', hashchange); } // make code pretty window.prettyPrint && prettyPrint(); }) }(window.jQuery)