Current Path: > home > transcarter > public_html > wp-content > > plugins > wordfence > js
Operation : Linux host59.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64 Software : Apache Server IP : 198.54.126.42 | Your IP: 216.73.216.135 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
admin.1744125809.js | File | 147817 bytes | July 17 2025 21:05:47. | |
admin.ajaxWatcher.1744125809.js | File | 15569 bytes | July 17 2025 21:05:47. | |
admin.liveTraffic.1744125809.js | File | 29285 bytes | July 17 2025 21:05:47. | |
chart.umd.1744125809.js | File | 203190 bytes | July 17 2025 21:05:47. | |
date.1744125809.js | File | 23344 bytes | July 17 2025 21:05:47. | |
jquery-ui-timepicker-addon.1744125809.js | File | 80707 bytes | July 17 2025 21:05:47. | |
jquery.colorbox-min.1744125809.js | File | 11898 bytes | July 17 2025 21:05:47. | |
jquery.colorbox.1744125809.js | File | 29173 bytes | July 17 2025 21:05:47. | |
jquery.qrcode.min.1744125809.js | File | 13995 bytes | July 17 2025 21:05:47. | |
jquery.tmpl.min.1744125809.js | File | 6115 bytes | July 17 2025 21:05:47. | |
knockout-3.5.1.1744125809.js | File | 68249 bytes | July 17 2025 21:05:47. | |
wfdashboard.1744125809.js | File | 365 bytes | July 17 2025 21:05:47. | |
wfdropdown.1744125809.js | File | 4689 bytes | July 17 2025 21:05:47. | |
wfglobal.1744125809.js | File | 32374 bytes | July 17 2025 21:05:47. | |
wfi18n.1744125809.js | File | 6491 bytes | July 17 2025 21:05:47. | |
wfonboarding.1744125809.js | File | 4824 bytes | July 17 2025 21:05:47. | |
wfpopover.1744125809.js | File | 22985 bytes | July 17 2025 21:05:47. | |
wfselect2.min.1744125809.js | File | 79628 bytes | July 17 2025 21:05:47. |
/* ======================================================================== * Bootstrap: dropdown.js v3.4.1 (adapted to WF prefix) * https://getbootstrap.com/docs/3.4/javascript/#dropdowns * ======================================================================== * Copyright 2011-2019 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * ======================================================================== */ +function ($) { 'use strict'; // DROPDOWN CLASS DEFINITION // ========================= var backdrop = '.wf-dropdown-backdrop' var toggle = '[data-toggle="wf-dropdown"]' var WFDropdown = function (element) { $(element).on('click.bs.wf-dropdown', this.toggle) } WFDropdown.VERSION = '3.4.1' function getParent($this) { var selector = $this.attr('data-target') if (!selector) { selector = $this.attr('href') selector = selector && /#[A-Za-z]/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7 } var $parent = selector !== '#' ? $(document).find(selector) : null return $parent && $parent.length ? $parent : $this.parent() } function clearMenus(e) { if (e && e.which === 3) return $(backdrop).remove() $(toggle).each(function () { var $this = $(this) var $parent = getParent($this) var relatedTarget = { relatedTarget: this } if (!$parent.hasClass('wf-open')) return if (e && e.type == 'click' && /input|textarea/i.test(e.target.tagName) && $.contains($parent[0], e.target)) return $parent.trigger(e = $.Event('hide.bs.wf-dropdown', relatedTarget)) if (e.isDefaultPrevented()) return $this.attr('aria-expanded', 'false') $parent.removeClass('wf-open').trigger($.Event('hidden.bs.wf-dropdown', relatedTarget)) }) } WFDropdown.prototype.toggle = function (e) { var $this = $(this) if ($this.is('.wf-disabled, :disabled')) return var $parent = getParent($this) var isActive = $parent.hasClass('wf-open') clearMenus() if (!isActive) { if ('ontouchstart' in document.documentElement && !$parent.closest('.wf-navbar-nav').length) { // if mobile we use a backdrop because click events don't delegate $(document.createElement('div')) .addClass('wf-dropdown-backdrop') .insertAfter($(this)) .on('click', clearMenus) } var relatedTarget = { relatedTarget: this } $parent.trigger(e = $.Event('show.bs.wf-dropdown', relatedTarget)) if (e.isDefaultPrevented()) return $this .trigger('focus') .attr('aria-expanded', 'true') $parent .toggleClass('wf-open') .trigger($.Event('shown.bs.wf-dropdown', relatedTarget)) } return false } WFDropdown.prototype.keydown = function (e) { if (!/(38|40|27|32)/.test(e.which) || /input|textarea/i.test(e.target.tagName)) return var $this = $(this) e.preventDefault() e.stopPropagation() if ($this.is('.wf-disabled, :disabled')) return var $parent = getParent($this) var isActive = $parent.hasClass('wf-open') if (!isActive && e.which != 27 || isActive && e.which == 27) { if (e.which == 27) $parent.find(toggle).trigger('focus') return $this.trigger('click') } var desc = ' li:not(.wf-disabled):visible a' var $items = $parent.find('.wf-dropdown-menu' + desc) if (!$items.length) return var index = $items.index(e.target) if (e.which == 38 && index > 0) index-- // up if (e.which == 40 && index < $items.length - 1) index++ // down if (!~index) index = 0 $items.eq(index).trigger('focus') } // DROPDOWN PLUGIN DEFINITION // ========================== function WFPlugin(option) { return this.each(function () { var $this = $(this) var data = $this.data('bs.wf-dropdown') if (!data) $this.data('bs.wf-dropdown', (data = new WFDropdown(this))) if (typeof option == 'string') data[option].call($this) }) } var old = $.fn.wfdropdown $.fn.wfdropdown = WFPlugin $.fn.wfdropdown.Constructor = WFDropdown // DROPDOWN NO CONFLICT // ==================== $.fn.wfdropdown.noConflict = function () { $.fn.wfdropdown = old return this } // APPLY TO STANDARD DROPDOWN ELEMENTS // =================================== $(document) .on('click.bs.wf-dropdown.data-api', clearMenus) .on('click.bs.wf-dropdown.data-api', '.wf-dropdown form', function (e) { e.stopPropagation() }) .on('click.bs.wf-dropdown.data-api', toggle, WFDropdown.prototype.toggle) .on('keydown.bs.wf-dropdown.data-api', toggle, WFDropdown.prototype.keydown) .on('keydown.bs.wf-dropdown.data-api', '.wf-dropdown-menu', WFDropdown.prototype.keydown) }(jQuery);
SILENT KILLER Tool