Ghost Exploiter Team Official
/
home2
/
warripp1
/
public_html
/
Dev
/
wp-includes
/
js
/
Nama File / Folder
Size
Action
codemirror
--
NONE
crop
--
NONE
dist
--
NONE
imgareaselect
--
NONE
jcrop
--
NONE
jquery
--
NONE
mediaelement
--
NONE
plupload
--
NONE
swfupload
--
NONE
thickbox
--
NONE
tinymce
--
NONE
admin-bar.min.js
3.668KB
Hapus
Edit
Rename
api-request.js
2.597KB
Hapus
Edit
Rename
autosave.js
20.838KB
Hapus
Edit
Rename
autosave.min.js
5.356KB
Hapus
Edit
Rename
backbone.js
75.971KB
Hapus
Edit
Rename
backbone.min.js
23.375KB
Hapus
Edit
Rename
clipboard.min.js
10.26KB
Hapus
Edit
Rename
colorpicker.js
28.401KB
Hapus
Edit
Rename
colorpicker.min.js
16.229KB
Hapus
Edit
Rename
comment-reply.min.js
2.329KB
Hapus
Edit
Rename
customize-base.js
25.084KB
Hapus
Edit
Rename
customize-base.min.js
7.671KB
Hapus
Edit
Rename
customize-models.js
6.656KB
Hapus
Edit
Rename
customize-preview-nav-menus.min.js
4.901KB
Hapus
Edit
Rename
customize-preview-widgets.js
22.606KB
Hapus
Edit
Rename
customize-preview-widgets.min.js
7.661KB
Hapus
Edit
Rename
customize-selective-refresh.js
32.545KB
Hapus
Edit
Rename
customize-views.js
4.946KB
Hapus
Edit
Rename
customize-views.min.js
2.365KB
Hapus
Edit
Rename
heartbeat.js
22.62KB
Hapus
Edit
Rename
heartbeat.min.js
5.761KB
Hapus
Edit
Rename
hoverIntent.js
4.834KB
Hapus
Edit
Rename
hoverIntent.min.js
1.069KB
Hapus
Edit
Rename
hoverintent-js.min.js
1.644KB
Hapus
Edit
Rename
imagesloaded.min.js
7.923KB
Hapus
Edit
Rename
json2.min.js
3.047KB
Hapus
Edit
Rename
masonry.min.js
28.274KB
Hapus
Edit
Rename
media-audiovideo.js
26.842KB
Hapus
Edit
Rename
media-audiovideo.min.js
12.546KB
Hapus
Edit
Rename
media-editor.js
28.255KB
Hapus
Edit
Rename
media-grid.js
29.108KB
Hapus
Edit
Rename
media-grid.min.js
14.051KB
Hapus
Edit
Rename
media-models.min.js
13.679KB
Hapus
Edit
Rename
media-views.js
259.091KB
Hapus
Edit
Rename
media-views.min.js
104.171KB
Hapus
Edit
Rename
quicktags.js
22.053KB
Hapus
Edit
Rename
quicktags.min.js
10.896KB
Hapus
Edit
Rename
shortcode.js
10.321KB
Hapus
Edit
Rename
shortcode.min.js
2.527KB
Hapus
Edit
Rename
swfobject.js
9.991KB
Hapus
Edit
Rename
tw-sack.min.js
3.188KB
Hapus
Edit
Rename
twemoji.js
27.017KB
Hapus
Edit
Rename
twemoji.min.js
10.686KB
Hapus
Edit
Rename
underscore.min.js
15.741KB
Hapus
Edit
Rename
utils.js
4.548KB
Hapus
Edit
Rename
wp-ajax-response.js
3.126KB
Hapus
Edit
Rename
wp-ajax-response.min.js
2.017KB
Hapus
Edit
Rename
wp-api.min.js
14.275KB
Hapus
Edit
Rename
wp-auth-check.js
4.271KB
Hapus
Edit
Rename
wp-backbone.js
14.885KB
Hapus
Edit
Rename
wp-custom-header.js
10.202KB
Hapus
Edit
Rename
wp-custom-header.min.js
4.325KB
Hapus
Edit
Rename
wp-embed-template.js
6.099KB
Hapus
Edit
Rename
wp-embed-template.min.js
3.019KB
Hapus
Edit
Rename
wp-embed.js
3.139KB
Hapus
Edit
Rename
wp-embed.min.js
1.366KB
Hapus
Edit
Rename
wp-emoji-loader.min.js
1.863KB
Hapus
Edit
Rename
wp-emoji-release.min.js
13.541KB
Hapus
Edit
Rename
wp-emoji.js
8.779KB
Hapus
Edit
Rename
wp-emoji.min.js
2.773KB
Hapus
Edit
Rename
wp-list-revisions.min.js
0.551KB
Hapus
Edit
Rename
wp-lists.min.js
7.228KB
Hapus
Edit
Rename
wp-pointer.min.js
3.542KB
Hapus
Edit
Rename
wp-util.js
3.875KB
Hapus
Edit
Rename
wpdialog.js
0.547KB
Hapus
Edit
Rename
wpdialog.min.js
0.231KB
Hapus
Edit
Rename
wplink.min.js
10.918KB
Hapus
Edit
Rename
zxcvbn-async.js
0.802KB
Hapus
Edit
Rename
zxcvbn-async.min.js
0.311KB
Hapus
Edit
Rename
zxcvbn.min.js
802.932KB
Hapus
Edit
Rename
<=Back
/*! * hoverIntent v1.8.3 // 2014.08.11 // jQuery v1.9.1+ * http://cherne.net/brian/resources/jquery.hoverIntent.html * * You may use hoverIntent under the terms of the MIT license. Basically that * means you are free to use hoverIntent as long as this header is left intact. * Copyright 2007, 2014 Brian Cherne */ /* hoverIntent is similar to jQuery's built-in "hover" method except that * instead of firing the handlerIn function immediately, hoverIntent checks * to see if the user's mouse has slowed down (beneath the sensitivity * threshold) before firing the event. The handlerOut function is only * called after a matching handlerIn. * * // basic usage ... just like .hover() * .hoverIntent( handlerIn, handlerOut ) * .hoverIntent( handlerInOut ) * * // basic usage ... with event delegation! * .hoverIntent( handlerIn, handlerOut, selector ) * .hoverIntent( handlerInOut, selector ) * * // using a basic configuration object * .hoverIntent( config ) * * @param handlerIn function OR configuration object * @param handlerOut function OR selector for delegation OR undefined * @param selector selector OR undefined * @author Brian Cherne <brian(at)cherne(dot)net> */ (function($) { $.fn.hoverIntent = function(handlerIn,handlerOut,selector) { // default configuration values var cfg = { interval: 100, sensitivity: 6, timeout: 0 }; if ( typeof handlerIn === "object" ) { cfg = $.extend(cfg, handlerIn ); } else if ($.isFunction(handlerOut)) { cfg = $.extend(cfg, { over: handlerIn, out: handlerOut, selector: selector } ); } else { cfg = $.extend(cfg, { over: handlerIn, out: handlerIn, selector: handlerOut } ); } // instantiate variables // cX, cY = current X and Y position of mouse, updated by mousemove event // pX, pY = previous X and Y position of mouse, set by mouseover and polling interval var cX, cY, pX, pY; // A private function for getting mouse position var track = function(ev) { cX = ev.pageX; cY = ev.pageY; }; // A private function for comparing current and previous mouse position var compare = function(ev,ob) { ob.hoverIntent_t = clearTimeout(ob.hoverIntent_t); // compare mouse positions to see if they've crossed the threshold if ( Math.sqrt( (pX-cX)*(pX-cX) + (pY-cY)*(pY-cY) ) < cfg.sensitivity ) { $(ob).off("mousemove.hoverIntent",track); // set hoverIntent state to true (so mouseOut can be called) ob.hoverIntent_s = true; return cfg.over.apply(ob,[ev]); } else { // set previous coordinates for next time pX = cX; pY = cY; // use self-calling timeout, guarantees intervals are spaced out properly (avoids JavaScript timer bugs) ob.hoverIntent_t = setTimeout( function(){compare(ev, ob);} , cfg.interval ); } }; // A private function for delaying the mouseOut function var delay = function(ev,ob) { ob.hoverIntent_t = clearTimeout(ob.hoverIntent_t); ob.hoverIntent_s = false; return cfg.out.apply(ob,[ev]); }; // A private function for handling mouse 'hovering' var handleHover = function(e) { // copy objects to be passed into t (required for event object to be passed in IE) var ev = $.extend({},e); var ob = this; // cancel hoverIntent timer if it exists if (ob.hoverIntent_t) { ob.hoverIntent_t = clearTimeout(ob.hoverIntent_t); } // if e.type === "mouseenter" if (e.type === "mouseenter") { // set "previous" X and Y position based on initial entry point pX = ev.pageX; pY = ev.pageY; // update "current" X and Y position based on mousemove $(ob).on("mousemove.hoverIntent",track); // start polling interval (self-calling timeout) to compare mouse coordinates over time if (!ob.hoverIntent_s) { ob.hoverIntent_t = setTimeout( function(){compare(ev,ob);} , cfg.interval );} // else e.type == "mouseleave" } else { // unbind expensive mousemove event $(ob).off("mousemove.hoverIntent",track); // if hoverIntent state is true, then call the mouseOut function after the specified delay if (ob.hoverIntent_s) { ob.hoverIntent_t = setTimeout( function(){delay(ev,ob);} , cfg.timeout );} } }; // listen for mouseenter and mouseleave return this.on({'mouseenter.hoverIntent':handleHover,'mouseleave.hoverIntent':handleHover}, cfg.selector); }; })(jQuery);
Liking