/home/player95/public_html/wp-includes/js/hoverIntent.js
/*!
 * hoverIntent v1.10.2 // 2020.04.28 // jQuery v1.7.0+
 * http://briancherne.github.io/jquery-hoverIntent/
 *
 * 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-2019 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(factory) {
    'use strict';
    if (typeof define === 'function' && define.amd) {
        define(['jquery'], factory);
    } else if (typeof module === 'object' && module.exports) {
        module.exports = factory(require('jquery'));
    } else if (jQuery && !jQuery.fn.hoverIntent) {
        factory(jQuery);
    }
})(function($) {
    'use strict';

    // default configuration values
    var _cfg = {
        interval: 100,
        sensitivity: 6,
        timeout: 0
    };

    // counter used to generate an ID for each instance
    var INSTANCE_COUNT = 0;

    // current X and Y position of mouse, updated during mousemove tracking (shared across instances)
    var cX, cY;

    // saves the current pointer position coordinates based on the given mousemove event
    var track = function(ev) {
        cX = ev.pageX;
        cY = ev.pageY;
    };

    // compares current and previous mouse positions
    var compare = function(ev,$el,s,cfg) {
        // compare mouse positions to see if pointer has slowed enough to trigger `over` function
        if ( Math.sqrt( (s.pX-cX)*(s.pX-cX) + (s.pY-cY)*(s.pY-cY) ) < cfg.sensitivity ) {
            $el.off(s.event,track);
            delete s.timeoutId;
            // set hoverIntent state as active for this element (permits `out` handler to trigger)
            s.isActive = true;
            // overwrite old mouseenter event coordinates with most recent pointer position
            ev.pageX = cX; ev.pageY = cY;
            // clear coordinate data from state object
            delete s.pX; delete s.pY;
            return cfg.over.apply($el[0],[ev]);
        } else {
            // set previous coordinates for next comparison
            s.pX = cX; s.pY = cY;
            // use self-calling timeout, guarantees intervals are spaced out properly (avoids JavaScript timer bugs)
            s.timeoutId = setTimeout( function(){compare(ev, $el, s, cfg);} , cfg.interval );
        }
    };

    // triggers given `out` function at configured `timeout` after a mouseleave and clears state
    var delay = function(ev,$el,s,out) {
        var data = $el.data('hoverIntent');
        if (data) {
            delete data[s.id];
        }
        return out.apply($el[0],[ev]);
    };

    // checks if `value` is a function
    var isFunction = function(value) {
        return typeof value === 'function';
    };

    $.fn.hoverIntent = function(handlerIn,handlerOut,selector) {
        // instance ID, used as a key to store and retrieve state information on an element
        var instanceId = INSTANCE_COUNT++;

        // extend the default configuration and parse parameters
        var cfg = $.extend({}, _cfg);
        if ( $.isPlainObject(handlerIn) ) {
            cfg = $.extend(cfg, handlerIn);
            if ( !isFunction(cfg.out) ) {
                cfg.out = cfg.over;
            }
        } else if ( isFunction(handlerOut) ) {
            cfg = $.extend(cfg, { over: handlerIn, out: handlerOut, selector: selector } );
        } else {
            cfg = $.extend(cfg, { over: handlerIn, out: handlerIn, selector: handlerOut } );
        }

        // A private function for handling mouse 'hovering'
        var handleHover = function(e) {
            // cloned event to pass to handlers (copy required for event object to be passed in IE)
            var ev = $.extend({},e);

            // the current target of the mouse event, wrapped in a jQuery object
            var $el = $(this);

            // read hoverIntent data from element (or initialize if not present)
            var hoverIntentData = $el.data('hoverIntent');
            if (!hoverIntentData) { $el.data('hoverIntent', (hoverIntentData = {})); }

            // read per-instance state from element (or initialize if not present)
            var state = hoverIntentData[instanceId];
            if (!state) { hoverIntentData[instanceId] = state = { id: instanceId }; }

            // state properties:
            // id = instance ID, used to clean up data
            // timeoutId = timeout ID, reused for tracking mouse position and delaying "out" handler
            // isActive = plugin state, true after `over` is called just until `out` is called
            // pX, pY = previously-measured pointer coordinates, updated at each polling interval
            // event = string representing the namespaced event used for mouse tracking

            // clear any existing timeout
            if (state.timeoutId) { state.timeoutId = clearTimeout(state.timeoutId); }

            // namespaced event used to register and unregister mousemove tracking
            var mousemove = state.event = 'mousemove.hoverIntent.hoverIntent'+instanceId;

            // handle the event, based on its type
            if (e.type === 'mouseenter') {
                // do nothing if already active
                if (state.isActive) { return; }
                // set "previous" X and Y position based on initial entry point
                state.pX = ev.pageX; state.pY = ev.pageY;
                // update "current" X and Y position based on mousemove
                $el.off(mousemove,track).on(mousemove,track);
                // start polling interval (self-calling timeout) to compare mouse coordinates over time
                state.timeoutId = setTimeout( function(){compare(ev,$el,state,cfg);} , cfg.interval );
            } else { // "mouseleave"
                // do nothing if not already active
                if (!state.isActive) { return; }
                // unbind expensive mousemove event
                $el.off(mousemove,track);
                // if hoverIntent state is true, then call the mouseOut function after the specified delay
                state.timeoutId = setTimeout( function(){delay(ev,$el,state,cfg.out);} , cfg.timeout );
            }
        };

        // listen for mouseenter and mouseleave
        return this.on({'mouseenter.hoverIntent':handleHover,'mouseleave.hoverIntent':handleHover}, cfg.selector);
    };
});
Path: home/player95/public_html/wp-includes/js
  • [D] codemirror
  • [D] crop
  • [D] dist
  • [D] imgareaselect
  • [D] jcrop
  • [D] jquery
  • [D] mediaelement
  • [D] plupload
  • [D] swfupload
  • [D] thickbox
  • [D] tinymce
  • [F] admin-bar.js
  • [F] admin-bar.min.js
  • [F] api-request.js
  • [F] api-request.min.js
  • [F] autosave.js
  • [F] autosave.min.js
  • [F] backbone.js
  • [F] backbone.min.js
  • [F] clipboard.js
  • [F] clipboard.min.js
  • [F] colorpicker.js
  • [F] colorpicker.min.js
  • [F] comment-reply.js
  • [F] comment-reply.min.js
  • [F] customize-base.js
  • [F] customize-base.min.js
  • [F] customize-loader.js
  • [F] customize-loader.min.js
  • [F] customize-models.js
  • [F] customize-models.min.js
  • [F] customize-preview-nav-menus.js
  • [F] customize-preview-nav-menus.min.js
  • [F] customize-preview-widgets.js
  • [F] customize-preview-widgets.min.js
  • [F] customize-preview.js
  • [F] customize-preview.min.js
  • [F] customize-selective-refresh.js
  • [F] customize-selective-refresh.min.js
  • [F] customize-views.js
  • [F] customize-views.min.js
  • [F] heartbeat.js
  • [F] heartbeat.min.js
  • [F] hoverintent-js.min.js
  • [F] hoverIntent.js
  • [F] hoverIntent.min.js
  • [F] imagesloaded.min.js
  • [F] json2.js
  • [F] json2.min.js
  • [F] masonry.min.js
  • [F] mce-view.js
  • [F] mce-view.min.js
  • [F] media-audiovideo.js
  • [F] media-audiovideo.min.js
  • [F] media-editor.js
  • [F] media-editor.min.js
  • [F] media-grid.js
  • [F] media-grid.min.js
  • [F] media-models.js
  • [F] media-models.min.js
  • [F] media-views.js
  • [F] media-views.min.js
  • [F] quicktags.js
  • [F] quicktags.min.js
  • [F] shortcode.js
  • [F] shortcode.min.js
  • [F] swfobject.js
  • [F] tw-sack.js
  • [F] tw-sack.min.js
  • [F] twemoji.js
  • [F] twemoji.min.js
  • [F] underscore.js
  • [F] underscore.min.js
  • [F] utils.js
  • [F] utils.min.js
  • [F] wp-ajax-response.js
  • [F] wp-ajax-response.min.js
  • [F] wp-api.js
  • [F] wp-api.min.js
  • [F] wp-auth-check.js
  • [F] wp-auth-check.min.js
  • [F] wp-backbone.js
  • [F] wp-backbone.min.js
  • [F] wp-custom-header.js
  • [F] wp-custom-header.min.js
  • [F] wp-embed-template.js
  • [F] wp-embed-template.min.js
  • [F] wp-embed.js
  • [F] wp-embed.min.js
  • [F] wp-emoji-loader.js
  • [F] wp-emoji-loader.min.js
  • [F] wp-emoji-release.min.js
  • [F] wp-emoji.js
  • [F] wp-emoji.min.js
  • [F] wp-list-revisions.js
  • [F] wp-list-revisions.min.js
  • [F] wp-lists.js
  • [F] wp-lists.min.js
  • [F] wp-pointer.js
  • [F] wp-pointer.min.js
  • [F] wp-sanitize.js
  • [F] wp-sanitize.min.js
  • [F] wp-util.js
  • [F] wp-util.min.js
  • [F] wpdialog.js
  • [F] wpdialog.min.js
  • [F] wplink.js
  • [F] wplink.min.js
  • [F] zxcvbn-async.js
  • [F] zxcvbn-async.min.js
  • [F] zxcvbn.min.js
Page not found – mmsbee24
Skip to content

mmsbee24

  • Sample Page
  • Homepage
  • Error 404

Oops! That page can’t be found.

It looks like nothing was found at this location. Maybe try one of the links below or a search?

Random videos

Indian Milf ur_khwahishh pussy fingering, boobs pressing and Ass Showing
9
Indian Milf ur_khwahishh pussy fingering, boobs pressing and Ass Showing
Gandi Baat Anveshi Jain Flora Saini
2
Gandi Baat Anveshi Jain Flora Saini
fucking with Isabel,Jerk off with REAL GIRLS in sex video chat
0 17:27
fucking with Isabel,Jerk off with REAL GIRLS in sex video chat
Chubby babe riding
1
Chubby babe riding
Cute desi lady sexy navel and boobs in pink saree
8
Cute desi lady sexy navel and boobs in pink saree
Khwahish Hot Show Live Ass Slap
5
Khwahish Hot Show Live Ass Slap
Gunjan Aras-instagram Model & Gandi baat 4 fame
2
Gunjan Aras-instagram Model & Gandi baat 4 fame
Khwahish Private StripChat Show
17
Khwahish Private StripChat Show
Bringing stranger girl to my bedroom and fucked her pussy,hunter Asia
4 20:13
Bringing stranger girl to my bedroom and fucked her pussy,hunter Asia
Hot Ellie Sharma Quick Boob Flash and Teasing on Tango Live
1
Hot Ellie Sharma Quick Boob Flash and Teasing on Tango Live
Goddess Janisha Superb 121 Live Show
1
Goddess Janisha Superb 121 Live Show

Archives

  • November 2025

Categories

  • App Content
  • Big Boobs
  • Desi
  • StripChat
  • Tango
  • Uncategorized
All rights reserved. Powered by WP-Script.com
Registration is disabled.

Login to mmsbee24

Lost Password?

Reset Password

Enter the username or e-mail you used in your profile. A password reset link will be sent to you by email.


Loading...

Don't have an account? Sign up Already have an account? Login