Вход Регистрация
Файл: Form Generator/Project Files/assets/js/generator/plugins/widget.js
Строк: 722
<?php
/*
 * jQuery UI Widget 1.10.3+amd
 * https://github.com/blueimp/jQuery-File-Upload
 *
 * Copyright 2013 jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/jQuery.widget/
 */

(function (factory) {
    if (
typeof define === "function" && define.amd) {
        
// Register as an anonymous AMD module:
        
define(["jquery"], factory);
    } else {
        
// Browser globals:
        
factory(jQuery);
    }
}(function( $, 
undefined ) {

var 
uuid 0,
    
slice = Array.prototype.slice,
    
_cleanData = $.cleanData;
$.
cleanData = function( elems ) {
    for ( var 
0elem; (elem elems[i]) != nulli++ ) {
        try {
            $( 
elem ).triggerHandler"remove" );
        
// http://bugs.jquery.com/ticket/8235
        
} catch( ) {}
    }
    
_cleanDataelems );
};

$.
widget = function( namebaseprototype ) {
    var 
fullNameexistingConstructorconstructorbasePrototype,
        
// proxiedPrototype allows the provided prototype to remain unmodified
        // so that it can be used as a mixin for multiple widgets (#8876)
        
proxiedPrototype = {},
        namespace = 
name.split"." )[ ];

    
name name.split"." )[ ];
    
fullName = namespace + "-" name;

    if ( !
prototype ) {
        
prototype base;
        
base = $.Widget;
    }

    
// create selector for plugin
    
$.expr":" ][ fullName.toLowerCase() ] = function( elem ) {
        return !!$.
dataelemfullName );
    };

    $[ namespace ] = $[ namespace ] || {};
    
existingConstructor = $[ namespace ][ name ];
    
constructor = $[ namespace ][ name ] = function( optionselement ) {
        
// allow instantiation without "new" keyword
        
if ( !this._createWidget ) {
            return new 
constructoroptionselement );
        }

        
// allow instantiation without initializing for simple inheritance
        // must use "new" keyword (the code above always passes args)
        
if ( arguments.length ) {
            
this._createWidgetoptionselement );
        }
    };
    
// extend with the existing constructor to carry over any static properties
    
$.extendconstructorexistingConstructor, {
        
versionprototype.version,
        
// copy the object used to create the prototype in case we need to
        // redefine the widget later
        
_proto: $.extend( {}, prototype ),
        
// track widgets that inherit from this widget in case this widget is
        // redefined after a widget inherits from it
        
_childConstructors: []
    });

    
basePrototype = new base();
    
// we need to make the options hash a property directly on the new instance
    // otherwise we'll modify the options hash on the prototype that we're
    // inheriting from
    
basePrototype.options = $.widget.extend( {}, basePrototype.options );
    $.
eachprototype, function( propvalue ) {
        if ( !$.
isFunctionvalue ) ) {
            
proxiedPrototypeprop ] = value;
            return;
        }
        
proxiedPrototypeprop ] = (function() {
            var 
_super = function() {
                    return 
base.prototypeprop ].applythisarguments );
                },
                
_superApply = function( args ) {
                    return 
base.prototypeprop ].applythisargs );
                };
            return function() {
                var 
__super this._super,
                    
__superApply this._superApply,
                    
returnValue;

                
this._super _super;
                
this._superApply _superApply;

                
returnValue value.applythisarguments );

                
this._super __super;
                
this._superApply __superApply;

                return 
returnValue;
            };
        })();
    });
    
constructor.prototype = $.widget.extendbasePrototype, {
        
// TODO: remove support for widgetEventPrefix
        // always use the name + a colon as the prefix, e.g., draggable:start
        // don't prefix for widgets that aren't DOM-based
        
widgetEventPrefixexistingConstructor basePrototype.widgetEventPrefix name
    
}, proxiedPrototype, {
        
constructorconstructor,
        namespace: namespace,
        
widgetNamename,
        
widgetFullNamefullName
    
});

    
// If this widget is being redefined then we need to find all widgets that
    // are inheriting from it and redefine all of them so that they inherit from
    // the new version of this widget. We're essentially trying to replace one
    // level in the prototype chain.
    
if ( existingConstructor ) {
        $.
eachexistingConstructor._childConstructors, function( ichild ) {
            var 
childPrototype child.prototype;

            
// redefine the child widget using the same prototype that was
            // originally used, but inherit from the new version of the base
            
$.widgetchildPrototype.namespace + "." childPrototype.widgetNameconstructorchild._proto );
        });
        
// remove the list of existing child constructors from the old constructor
        // so the old child constructors can be garbage collected
        
delete existingConstructor._childConstructors;
    } else {
        
base._childConstructors.pushconstructor );
    }

    $.
widget.bridgenameconstructor );
};

$.
widget.extend = function( target ) {
    var 
input slice.callarguments),
        
inputIndex 0,
        
inputLength input.length,
        
key,
        
value;
    for ( ; 
inputIndex inputLengthinputIndex++ ) {
        for ( 
key in inputinputIndex ] ) {
            
value inputinputIndex ][ key ];
            if ( 
inputinputIndex ].hasOwnPropertykey ) && value !== undefined ) {
                
// Clone objects
                
if ( $.isPlainObjectvalue ) ) {
                    
targetkey ] = $.isPlainObjecttargetkey ] ) ?
                        $.
widget.extend( {}, targetkey ], value ) :
                        
// Don't extend strings, arrays, etc. with objects
                        
$.widget.extend( {}, value );
                
// Copy everything else by reference
                
} else {
                    
targetkey ] = value;
                }
            }
        }
    }
    return 
target;
};

$.
widget.bridge = function( nameobject ) {
    var 
fullName object.prototype.widgetFullName || name;
    $.fn[ 
name ] = function( options ) {
        var 
isMethodCall typeof options === "string",
            
args slice.callarguments),
            
returnValue this;

        
// allow multiple hashes to be passed on init
        
options = !isMethodCall && args.length ?
            $.
widget.extend.applynull, [ options ].concat(args) ) :
            
options;

        if ( 
isMethodCall ) {
            
this.each(function() {
                var 
methodValue,
                    
instance = $.datathisfullName );
                if ( !
instance ) {
                    return $.
error"cannot call methods on " name " prior to initialization; " +
                        
"attempted to call method '" options "'" );
                }
                if ( !$.
isFunctioninstance[options] ) || options.charAt) === "_" ) {
                    return $.
error"no such method '" options "' for " name " widget instance" );
                }
                
methodValue instanceoptions ].applyinstanceargs );
                if ( 
methodValue !== instance && methodValue !== undefined ) {
                    
returnValue methodValue && methodValue.jquery ?
                        
returnValue.pushStackmethodValue.get() ) :
                        
methodValue;
                    return 
false;
                }
            });
        } else {
            
this.each(function() {
                var 
instance = $.datathisfullName );
                if ( 
instance ) {
                    
instance.optionoptions || {} )._init();
                } else {
                    $.
datathisfullName, new objectoptionsthis ) );
                }
            });
        }

        return 
returnValue;
    };
};

$.
Widget = function( /* options, element */ ) {};
$.
Widget._childConstructors = [];

$.
Widget.prototype = {
    
widgetName"widget",
    
widgetEventPrefix"",
    
defaultElement"<div>",
    
options: {
        
disabledfalse,

        
// callbacks
        
createnull
    
},
    
_createWidget: function( optionselement ) {
        
element = $( element || this.defaultElement || this )[ ];
        
this.element = $( element );
        
this.uuid uuid++;
        
this.eventNamespace "." this.widgetName this.uuid;
        
this.options = $.widget.extend( {},
            
this.options,
            
this._getCreateOptions(),
            
options );

        
this.bindings = $();
        
this.hoverable = $();
        
this.focusable = $();

        if ( 
element !== this ) {
            $.
dataelementthis.widgetFullNamethis );
            
this._ontruethis.element, {
                
remove: function( event ) {
                    if ( 
event.target === element ) {
                        
this.destroy();
                    }
                }
            });
            
this.document = $( element.style ?
                
// element within the document
                
element.ownerDocument :
                
// element is window or document
                
element.document || element );
            
this.window = $( this.document[0].defaultView || this.document[0].parentWindow );
        }

        
this._create();
        
this._trigger"create"nullthis._getCreateEventData() );
        
this._init();
    },
    
_getCreateOptions: $.noop,
    
_getCreateEventData: $.noop,
    
_create: $.noop,
    
_init: $.noop,

    
destroy: function() {
        
this._destroy();
        
// we can probably remove the unbind calls in 2.0
        // all event bindings should go through this._on()
        
this.element
            
.unbindthis.eventNamespace )
            
// 1.9 BC for #7810
            // TODO remove dual storage
            
.removeDatathis.widgetName )
            .
removeDatathis.widgetFullName )
            
// support: jquery <1.6.3
            // http://bugs.jquery.com/ticket/9413
            
.removeData( $.camelCasethis.widgetFullName ) );
        
this.widget()
            .
unbindthis.eventNamespace )
            .
removeAttr"aria-disabled" )
            .
removeClass(
                
this.widgetFullName "-disabled " +
                
"ui-state-disabled" );

        
// clean up events and states
        
this.bindings.unbindthis.eventNamespace );
        
this.hoverable.removeClass"ui-state-hover" );
        
this.focusable.removeClass"ui-state-focus" );
    },
    
_destroy: $.noop,

    
widget: function() {
        return 
this.element;
    },

    
option: function( keyvalue ) {
        var 
options key,
            
parts,
            
curOption,
            
i;

        if ( 
arguments.length === ) {
            
// don't return a reference to the internal hash
            
return $.widget.extend( {}, this.options );
        }

        if ( 
typeof key === "string" ) {
            
// handle nested keys, e.g., "foo.bar" => { foo: { bar: ___ } }
            
options = {};
            
parts key.split"." );
            
key parts.shift();
            if ( 
parts.length ) {
                
curOption optionskey ] = $.widget.extend( {}, this.optionskey ] );
                for ( 
0parts.length 1i++ ) {
                    
curOptionparts] ] = curOptionparts] ] || {};
                    
curOption curOptionparts] ];
                }
                
key parts.pop();
                if ( 
value === undefined ) {
                    return 
curOptionkey ] === undefined null curOptionkey ];
                }
                
curOptionkey ] = value;
            } else {
                if ( 
value === undefined ) {
                    return 
this.optionskey ] === undefined null this.optionskey ];
                }
                
optionskey ] = value;
            }
        }

        
this._setOptionsoptions );

        return 
this;
    },
    
_setOptions: function( options ) {
        var 
key;

        for ( 
key in options ) {
            
this._setOptionkeyoptionskey ] );
        }

        return 
this;
    },
    
_setOption: function( keyvalue ) {
        
this.optionskey ] = value;

        if ( 
key === "disabled" ) {
            
this.widget()
                .
toggleClassthis.widgetFullName "-disabled ui-state-disabled", !!value )
                .
attr"aria-disabled"value );
            
this.hoverable.removeClass"ui-state-hover" );
            
this.focusable.removeClass"ui-state-focus" );
        }

        return 
this;
    },

    
enable: function() {
        return 
this._setOption"disabled"false );
    },
    
disable: function() {
        return 
this._setOption"disabled"true );
    },

    
_on: function( suppressDisabledCheckelementhandlers ) {
        var 
delegateElement,
            
instance this;

        
// no suppressDisabledCheck flag, shuffle arguments
        
if ( typeof suppressDisabledCheck !== "boolean" ) {
            
handlers element;
            
element suppressDisabledCheck;
            
suppressDisabledCheck false;
        }

        
// no element argument, shuffle and use this.element
        
if ( !handlers ) {
            
handlers element;
            
element this.element;
            
delegateElement this.widget();
        } else {
            
// accept selectors, DOM elements
            
element delegateElement = $( element );
            
this.bindings this.bindings.addelement );
        }

        $.
eachhandlers, function( eventhandler ) {
            function 
handlerProxy() {
                
// allow widgets to customize the disabled handling
                // - disabled as an array instead of boolean
                // - disabled class as method for disabling individual parts
                
if ( !suppressDisabledCheck &&
                        ( 
instance.options.disabled === true ||
                            $( 
this ).hasClass"ui-state-disabled" ) ) ) {
                    return;
                }
                return ( 
typeof handler === "string" instancehandler ] : handler )
                    .
applyinstancearguments );
            }

            
// copy the guid so direct unbinding works
            
if ( typeof handler !== "string" ) {
                
handlerProxy.guid handler.guid =
                    
handler.guid || handlerProxy.guid || $.guid++;
            }

            var 
match event.match( /^(w+)s*(.*)$/ ),
                
eventName match[1] + instance.eventNamespace,
                
selector match[2];
            if ( 
selector ) {
                
delegateElement.delegateselectoreventNamehandlerProxy );
            } else {
                
element.bindeventNamehandlerProxy );
            }
        });
    },

    
_off: function( elementeventName ) {
        
eventName = (eventName || "").split" " ).jointhis.eventNamespace " " ) + this.eventNamespace;
        
element.unbindeventName ).undelegateeventName );
    },

    
_delay: function( handlerdelay ) {
        function 
handlerProxy() {
            return ( 
typeof handler === "string" instancehandler ] : handler )
                .
applyinstancearguments );
        }
        var 
instance this;
        return 
setTimeouthandlerProxydelay || );
    },

    
_hoverable: function( element ) {
        
this.hoverable this.hoverable.addelement );
        
this._onelement, {
            
mouseenter: function( event ) {
                $( 
event.currentTarget ).addClass"ui-state-hover" );
            },
            
mouseleave: function( event ) {
                $( 
event.currentTarget ).removeClass"ui-state-hover" );
            }
        });
    },

    
_focusable: function( element ) {
        
this.focusable this.focusable.addelement );
        
this._onelement, {
            
focusin: function( event ) {
                $( 
event.currentTarget ).addClass"ui-state-focus" );
            },
            
focusout: function( event ) {
                $( 
event.currentTarget ).removeClass"ui-state-focus" );
            }
        });
    },

    
_trigger: function( typeeventdata ) {
        var 
proporig,
            
callback this.optionstype ];

        
data data || {};
        
event = $.Eventevent );
        
event.type = ( type === this.widgetEventPrefix ?
            
type :
            
this.widgetEventPrefix type ).toLowerCase();
        
// the original event may come from any element
        // so we need to reset the target on the new event
        
event.target this.element];

        
// copy original event properties over to the new event
        
orig event.originalEvent;
        if ( 
orig ) {
            for ( 
prop in orig ) {
                if ( !( 
prop in event ) ) {
                    
eventprop ] = origprop ];
                }
            }
        }

        
this.element.triggereventdata );
        return !( $.
isFunctioncallback ) &&
            
callback.applythis.element[0], [ event ].concatdata ) ) === false ||
            
event.isDefaultPrevented() );
    }
};

$.
each( { show"fadeIn"hide"fadeOut" }, function( methoddefaultEffect ) {
    $.
Widget.prototype"_" method ] = function( elementoptionscallback ) {
        if ( 
typeof options === "string" ) {
            
options = { effectoptions };
        }
        var 
hasOptions,
            
effectName = !options ?
                
method :
                
options === true || typeof options === "number" ?
                    
defaultEffect :
                    
options.effect || defaultEffect;
        
options options || {};
        if ( 
typeof options === "number" ) {
            
options = { durationoptions };
        }
        
hasOptions = !$.isEmptyObjectoptions );
        
options.complete callback;
        if ( 
options.delay ) {
            
element.delayoptions.delay );
        }
        if ( 
hasOptions && $.effects && $.effects.effecteffectName ] ) {
            
elementmethod ]( options );
        } else if ( 
effectName !== method && elementeffectName ] ) {
            
elementeffectName ]( options.durationoptions.easingcallback );
        } else {
            
element.queue(function( next ) {
                $( 
this )[ method ]();
                if ( 
callback ) {
                    
callback.callelement] );
                }
                
next();
            });
        }
    };
});

}));
?>
Онлайн: 1
Реклама