Server IP : 127.0.0.2 / Your IP : 18.222.25.95 Web Server : Apache/2.4.18 (Ubuntu) System : User : www-data ( ) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : disk_free_space,disk_total_space,diskfreespace,dl,exec,fpaththru,getmyuid,getmypid,highlight_file,ignore_user_abord,leak,listen,link,opcache_get_configuration,opcache_get_status,passthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,php_uname,phpinfo,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pclose,popen,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,shell_exec,source,show_source,system,virtual MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/public/assets/js/ |
Upload File : |
/*! * Documenter 2.0 * http://rxa.li/documenter * * Copyright 2013, 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(); $(".collapse").collapse(); $(window).one('scroll', function(){ $('.navbar').scrollspy(); $('.nav').find('li.active').removeClass('active'); }); //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)