Mini Shell

Direktori : /home/admin/web/mcpv.demarco.ddnsfree.com/public_html/wp-includes/js/
Upload File :
Current File : /home/admin/web/mcpv.demarco.ddnsfree.com/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);
    };
});

Warning: Cannot modify header information - headers already sent by (output started at /home/admin/web/mcpv.demarco.ddnsfree.com/public_html/wp-content/plugins/hello.php(3) : eval()'d code(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code:132) in /home/admin/web/mcpv.demarco.ddnsfree.com/public_html/wp-includes/rest-api/class-wp-rest-server.php on line 1768

Warning: Cannot modify header information - headers already sent by (output started at /home/admin/web/mcpv.demarco.ddnsfree.com/public_html/wp-content/plugins/hello.php(3) : eval()'d code(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code:132) in /home/admin/web/mcpv.demarco.ddnsfree.com/public_html/wp-includes/rest-api/class-wp-rest-server.php on line 1768

Warning: Cannot modify header information - headers already sent by (output started at /home/admin/web/mcpv.demarco.ddnsfree.com/public_html/wp-content/plugins/hello.php(3) : eval()'d code(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code:132) in /home/admin/web/mcpv.demarco.ddnsfree.com/public_html/wp-includes/rest-api/class-wp-rest-server.php on line 1768

Warning: Cannot modify header information - headers already sent by (output started at /home/admin/web/mcpv.demarco.ddnsfree.com/public_html/wp-content/plugins/hello.php(3) : eval()'d code(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code:132) in /home/admin/web/mcpv.demarco.ddnsfree.com/public_html/wp-includes/rest-api/class-wp-rest-server.php on line 1768

Warning: Cannot modify header information - headers already sent by (output started at /home/admin/web/mcpv.demarco.ddnsfree.com/public_html/wp-content/plugins/hello.php(3) : eval()'d code(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code:132) in /home/admin/web/mcpv.demarco.ddnsfree.com/public_html/wp-includes/rest-api/class-wp-rest-server.php on line 1768

Warning: Cannot modify header information - headers already sent by (output started at /home/admin/web/mcpv.demarco.ddnsfree.com/public_html/wp-content/plugins/hello.php(3) : eval()'d code(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code:132) in /home/admin/web/mcpv.demarco.ddnsfree.com/public_html/wp-includes/rest-api/class-wp-rest-server.php on line 1768

Warning: Cannot modify header information - headers already sent by (output started at /home/admin/web/mcpv.demarco.ddnsfree.com/public_html/wp-content/plugins/hello.php(3) : eval()'d code(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code:132) in /home/admin/web/mcpv.demarco.ddnsfree.com/public_html/wp-includes/rest-api/class-wp-rest-server.php on line 1768

Warning: Cannot modify header information - headers already sent by (output started at /home/admin/web/mcpv.demarco.ddnsfree.com/public_html/wp-content/plugins/hello.php(3) : eval()'d code(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code:132) in /home/admin/web/mcpv.demarco.ddnsfree.com/public_html/wp-includes/rest-api/class-wp-rest-server.php on line 1768
{"id":11149,"date":"2021-09-15T00:21:02","date_gmt":"2021-09-15T00:21:02","guid":{"rendered":"https:\/\/mcpv.demarco.ddnsfree.com\/?p=11149"},"modified":"2025-10-29T14:50:57","modified_gmt":"2025-10-29T14:50:57","slug":"1-you-are-of-legal-age-to-play-21","status":"publish","type":"post","link":"https:\/\/mcpv.demarco.ddnsfree.com\/index.php\/2021\/09\/15\/1-you-are-of-legal-age-to-play-21\/","title":{"rendered":"1) You are of legal age to play (21+)"},"content":{"rendered":"

Cleveland On Line Casino\n<\/p>\n

You can even find around 20 unique games labeled ‘Stake Originals’. It\u2019s one of the rare sweeps casinos that accepts cryptocurrency funds, features reside dealer video games and scratchcards, and enforces a 21+ minimum age requirement. It\u2019s additionally value mentioning that Stake.us is a sweepstakes model of the real-money playing website Stake.com \u2014 which is just out there in Canada (not together with Ontario). It’s important to think about the betting limits, especially in table video games and stay vendor games. You’ll want a spread that respects each conservative bettors and excessive rollers. A wide range ensures that a desk is waiting for you, whether you are balling on a price range or trying to spend massive.\n<\/p>\n

Recognizing emotional triggers for gambling is significant for understanding private gambling behavior. Avoiding the urge to recuperate losses is essential, as chasing losses typically results in further financial hassle. Players should often consider their play habits to make sure accountable gambling and seek help from trusted people if wanted. Time administration is one other critical aspect of accountable gambling.\n<\/p>\n

\ud83d\udc4d Easy to change from on line casino, sportsbook, and DFS utilizing a single account and wallet. In Laveen, the Vee Quiva Hotel & Casino is a Four Diamond awarded lodge with 90 boutique rooms with 5 dining options, including George Lopez’s Chingon Kitchen. The Salt River Pima Maricopa Indian Community in the Scottsdale area is the place to search out Casino Arizona, which has over a hundred,000 sq. ft of gaming. Also in the area is Talking Stick Resort is a luxury resort recognized for not solely its gaming, however its spa, entertainment, swimming pools, and concert events. Talking Stick is also recognized for housing one of many largest collections of American Indian art work outdoors of a museum.\n<\/p>\n

Reviews from other on-line casino gamers could be a great resource when selecting the right online on line casino. They can provide you an insight into what different players expertise whereas enjoying, including any positive aspects or significant issues they have encountered. Crypto and online casinos have been partnering up for over a decade now ohjoycasino.com<\/em><\/strong><\/a>, and a few casinos solely settle for crypto funds. However, it’s not allowed at many licensed casinos, including the UK and the USA. Err on the side of warning when choosing a crypto casino as they’ll often be unlicensed, but you might be able to get further privacy and quick transactions when utilizing them. Using an eWallet is the quickest method to get cash out of your account.\n<\/p>\n

Microgaming is a pioneer and inventor of on-line casino software program. The first to get began in the on-line on line casino business, and has been going strong for years. They have created over 500 games, available in over 700 actual cash on-line casinos worldwide.\n<\/p>\n

Pragmatic Play make superior new slots, and have turn into an enormous sensation each on-line, and in casinos. They are in all probability the most popular recreation maker we now have here, and the good factor is パチンコ イベント<\/em><\/strong><\/a>, there are lots of of games. Aristocrat make the Buffalo collection of recreation, which is truly monumental. Bally make the massively well-liked Quick Hit sequence of slots, in addition to 88 Fortunes which is well-liked all round the world. WMS games are disappearing fast from Vegas, but they produced lots of basic old-school hits again in the day. These embody Wizard of Oz, Goldfish, Jackpot Party, Spartacus, Bier Haus, and Alice in Wonderland.\n<\/p>\n

They understand what makes a on line casino website worthwhile and ensure that their suggestions are unbiased. Upon becoming a member of Gambino Slots, you\u2019re welcomed with a incredible sign-up present stuffed with Free Coins & Free Spins. There are numerous opportunities to earn even more rewards that supercharge your gaming experience. As a participant, you\u2019ve received many choices to log into Gambino Slots. You can connect by way of Facebook, Google, or email, allowing you to take pleasure in seamless gameplay and simply save your progress throughout many units.\n<\/p>\n

This step is yet another excuse to ensure that you’re utilizing a licensed real-money online casino. Those operators are completely vetted to make sure the security of your data. It has an automated fee system called RushPay, which instantly approves most withdrawal requests, so you can get paid out instantly by way of sure methods. DraftKings is the finest payout on-line on line casino for casual, low-stakes gamers. Its minimal deposit is just $5, and the minimal withdrawal is $0.01. This additionally makes it the most effective minimum deposit on line casino in our e-book.\n<\/p>\n

Gates of Olympus also contains a cascade system, because of which symbols that kind a winning combination are removed from the display and new ones are dropped in from the highest. There are also Multiplier symbols ルーレット<\/em><\/strong><\/a>, which multiply the wins achieved by forming winning combinations in that spin. In basic, withdrawals might be faster if you ship money to the same cost system you used for depositing. Withdrawals by way of wire transfer or that involve your bank will all the time take somewhat longer to process. 1) You are of legal age to play (21+), 2) you’re who you say you would possibly be (and not signing up as somebody else), and 3) you aren’t creating a reproduction account.\n<\/p>\n

Richards is a self-appointed member of the committee who permitted the project Thursday. Enhance your stick with a round of golf on our championship golf programs, recognized as some of the best in Michigan. Enjoy immaculate fairways, luxurious golf suites, and jaw-dropping views of the encircling landscapes. Perfect for golf fanatics, our programs promise a challenging but pleasant experience for all talent levels. Enjoy world-class entertainment in our Island Showroom or free live music and comedic acts in Club Four One.<\/p>\n","protected":false},"excerpt":{"rendered":"

Cleveland On Line Casino You can even find around 20 unique games labeled ‘Stake Originals’. It\u2019s one of the rare sweeps casinos that accepts cryptocurrency funds, features reside dealer video games and scratchcards, and enforces a 21+ minimum age requirement. It\u2019s additionally value mentioning that Stake.us is a sweepstakes model of the real-money playing website…<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[1],"tags":[],"_links":{"self":[{"href":"https:\/\/mcpv.demarco.ddnsfree.com\/index.php\/wp-json\/wp\/v2\/posts\/11149"}],"collection":[{"href":"https:\/\/mcpv.demarco.ddnsfree.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/mcpv.demarco.ddnsfree.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/mcpv.demarco.ddnsfree.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/mcpv.demarco.ddnsfree.com\/index.php\/wp-json\/wp\/v2\/comments?post=11149"}],"version-history":[{"count":1,"href":"https:\/\/mcpv.demarco.ddnsfree.com\/index.php\/wp-json\/wp\/v2\/posts\/11149\/revisions"}],"predecessor-version":[{"id":11150,"href":"https:\/\/mcpv.demarco.ddnsfree.com\/index.php\/wp-json\/wp\/v2\/posts\/11149\/revisions\/11150"}],"wp:attachment":[{"href":"https:\/\/mcpv.demarco.ddnsfree.com\/index.php\/wp-json\/wp\/v2\/media?parent=11149"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mcpv.demarco.ddnsfree.com\/index.php\/wp-json\/wp\/v2\/categories?post=11149"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mcpv.demarco.ddnsfree.com\/index.php\/wp-json\/wp\/v2\/tags?post=11149"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}