%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/11585/cwd/html/ppaobm/vendor/kartik-v/yii2-widget-affix/assets/js/ |
Upload File : |
/** * Scrollspy and affixed enhanced navigation for Twitter Bootstrap * Modified and built for Yii Framework 2.0 * * Based on affix sidenav examples available in Twitter Bootstrap * documentation site at http://getbootstrap.com/ * * Author: Kartik Visweswaran * Year: 2014 * For more Yii related demos visit http://demos.krajee.com */ !function ($) { $(function () { var $window = $(window), $body = $(document.body), $sideBar = $('.kv-sidebar'), navHeight = $('.navbar').outerHeight(true) + 10; $body.scrollspy({ target: '.kv-sidebar', offset: navHeight }) $window.on('load', function () { $body.scrollspy('refresh') }) $('.kv-sidebar [href=#]').click(function (e) { e.preventDefault() }) // back to top setTimeout(function () { $sideBar.affix({ offset: { top: function () { var offsetTop = $sideBar.offset().top var sideBarMargin = parseInt($sideBar.children(0).css('margin-top'), 10) var navOuterHeight = $('.kv-header').height() return (this.top = offsetTop - navOuterHeight - sideBarMargin) }, bottom: function () { return (this.bottom = $('.kv-footer').outerHeight(true)) } } }) }, 100) $sideBar.width($sideBar.parent().width()); $window.resize(function () { $sideBar.width($sideBar.parent().width()); }); }) }(window.jQuery)