Вход Регистрация
Файл: CloudBox-main/doc/js/jquery.uniform.js
Строк: 1154
<?php
/*

Uniform v2.0.0
Copyright © 2009 Josh Pyles / Pixelmatrix Design LLC
http://pixelmatrixdesign.com

Requires jQuery 1.3 or newer

Much thanks to Thomas Reynolds and Buck Wilson for their help and advice on
this.

Disabling text selection is made possible by Mathias Bynens
<http://mathiasbynens.be/> and his noSelect plugin.
<https://github.com/mathiasbynens/jquery-noselect>, which is embedded.

Also, thanks to David Kaneda and Eugene Bond for their contributions to the
plugin.

Tyler Akins has also rewritten chunks of the plugin, helped close many issues,
and ensured version 2 got out the door.

License:
MIT License - http://www.opensource.org/licenses/mit-license.php

Enjoy!

*/
/*global jQuery, window, document*/

(function ($, undef) {
    
"use strict";

    
/**
     * Use .prop() if jQuery supports it, otherwise fall back to .attr()
     *
     * @param jQuery $el jQuery'd element on which we're calling attr/prop
     * @param ... All other parameters are passed to jQuery's function
     * @return The result from jQuery
     */
    
function attrOrProp($el) {
        var 
args = Array.prototype.slice.call(arguments1);

        if (
$el.prop) {
            
// jQuery 1.6+
            
return $el.prop.apply($elargs);
        }

        
// jQuery 1.5 and below
        
return $el.attr.apply($elargs);
    }

    
/**
     * For backwards compatibility with older jQuery libraries, only bind
     * one thing at a time.  Also, this function adds our namespace to
     * events in one consistent location, shrinking the minified code.
     *
     * The properties on the events object are the names of the events
     * that we are supposed to add to.  It can be a space separated list.
     * The namespace will be added automatically.
     *
     * @param jQuery $el
     * @param Object options Uniform options for this element
     * @param Object events Events to bind, properties are event names
     */
    
function bindMany($eloptionsevents) {
        var 
namenamespaced;

        for (
name in events) {
            if (
events.hasOwnProperty(name)) {
                
namespaced name.replace(/ |$/goptions.eventNamespace);
                
$el.bind(nameevents[name]);
            }
        }
    }

    
/**
     * Bind the hover, active, focus, and blur UI updates
     *
     * @param jQuery $el Original element
     * @param jQuery $target Target for the events (our div/span)
     * @param Object options Uniform options for the element $target
     */
    
function bindUi($el$targetoptions) {
        
bindMany($eloptions, {
            
focus: function () {
                
$target.addClass(options.focusClass);
            },
            
blur: function () {
                
$target.removeClass(options.focusClass);
                
$target.removeClass(options.activeClass);
            },
            
mouseenter: function () {
                
$target.addClass(options.hoverClass);
            },
            
mouseleave: function () {
                
$target.removeClass(options.hoverClass);
                
$target.removeClass(options.activeClass);
            },
            
"mousedown touchbegin": function () {
                if (!
$el.is(":disabled")) {
                    
$target.addClass(options.activeClass);
                }
            },
            
"mouseup touchend": function () {
                
$target.removeClass(options.activeClass);
            }
        });
    }

    
/**
     * Remove the hover, focus, active classes.
     *
     * @param jQuery $el Element with classes
     * @param Object options Uniform options for the element
     */
    
function classClearStandard($eloptions) {
        
$el.removeClass(options.hoverClass " " options.focusClass " " options.activeClass);
    }

    
/**
     * Add or remove a class, depending on if it's "enabled"
     *
     * @param jQuery $el Element that has the class added/removed
     * @param String className Class or classes to add/remove
     * @param Boolean enabled True to add the class, false to remove
     */
    
function classUpdate($elclassNameenabled) {
        if (
enabled) {
            
$el.addClass(className);
        } else {
            
$el.removeClass(className);
        }
    }

    
/**
     * Updating the "checked" property can be a little tricky.  This
     * changed in jQuery 1.6 and now we can pass booleans to .prop().
     * Prior to that, one either adds an attribute ("checked=checked") or
     * removes the attribute.
     *
     * @param jQuery $tag Our Uniform span/div
     * @param jQuery $el Original form element
     * @param Object options Uniform options for this element
     */
    
function classUpdateChecked($tag$eloptions) {
        var 
"checked",
            
isChecked $el.is(":" c);

        if (
$el.prop) {
            
// jQuery 1.6+
            
$el.prop(cisChecked);
        } else {
            
// jQuery 1.5 and below
            
if (isChecked) {
                
$el.attr(cc);
            } else {
                
$el.removeAttr(c);
            }
        }

        
classUpdate($tagoptions.checkedClassisChecked);
    }

    
/**
     * Set or remove the "disabled" class for disabled elements, based on
     * if the 
     *
     * @param jQuery $tag Our Uniform span/div
     * @param jQuery $el Original form element
     * @param Object options Uniform options for this element
     */
    
function classUpdateDisabled($tag$eloptions) {
        
classUpdate($tagoptions.disabledClass$el.is(":disabled"));
    }

    
/**
     * Wrap an element inside of a container or put the container next
     * to the element.  See the code for examples of the different methods.
     *
     * Returns the container that was added to the HTML.
     *
     * @param jQuery $el Element to wrap
     * @param jQuery $container Add this new container around/near $el
     * @param String method One of "after", "before" or "wrap"
     * @return $container after it has been cloned for adding to $el
     */
    
function divSpanWrap($el$containermethod) {
        switch (
method) {
        case 
"after":
            
// Result:  <element /> <container />
            
$el.after($container);
            return 
$el.next();
        case 
"before":
            
// Result:  <container /> <element />
            
$el.before($container);
            return 
$el.prev();
        case 
"wrap":
            
// Result:  <container> <element /> </container>
            
$el.wrap($container);
            return 
$el.parent();
        }

        return 
null;
    }

    
/**
     * Create a div/span combo for uniforming an element
     *
     * @param jQuery $el Element to wrap
     * @param Object options Options for the element, set by the user
     * @param Object divSpanConfig Options for how we wrap the div/span
     * @return Object Contains the div and span as properties
     */
    
function divSpan($eloptionsdivSpanConfig) {
        var 
$div$spanid;

        if (!
divSpanConfig) {
            
divSpanConfig = {};
        }

        
divSpanConfig = $.extend({
            
bind: {},
            
divClassnull,
            
divWrap"wrap",
            
spanClassnull,
            
spanHtmlnull,
            
spanWrap"wrap"
        
}, divSpanConfig);

        
$div = $('<div />');
        
$span = $('<span />');

        
// Automatically hide this div/span if the element is hidden.
        // Do not hide if the element is hidden because a parent is hidden.
        
if (options.autoHide && $el.is(':hidden') && $el.css('display') === 'none') {
            
$div.hide();
        }

        if (
divSpanConfig.divClass) {
            
$div.addClass(divSpanConfig.divClass);
        }

        if (
divSpanConfig.spanClass) {
            
$span.addClass(divSpanConfig.spanClass);
        }

        
id attrOrProp($el'id');

        if (
options.useID && id) {
            
attrOrProp($div'id'options.idPrefix '-' id);
        }

        if (
divSpanConfig.spanHtml) {
            
$span.html(divSpanConfig.spanHtml);
        }

        
$div divSpanWrap($el$divdivSpanConfig.divWrap);
        
$span divSpanWrap($el$spandivSpanConfig.spanWrap);
        
classUpdateDisabled($div$eloptions);
        return {
            
div$div,
            
span$span
        
};
    }


    
/**
     * Test if high contrast mode is enabled.
     *
     * In high contrast mode, background images can not be set and
     * they are always returned as 'none'.
     *
     * @return boolean True if in high contrast mode
     */
    
function highContrast() {
        var 
c$divelrgb;

        
// High contrast mode deals with white and black
        
rgb 'rgb(120,2,153)';
        
$div = $('<div style="width:0;height:0;color:' rgb '">');
        $(
'body').append($div);
        
el $div.get(0);

        
// $div.css() will get the style definition, not
        // the actually displaying style
        
if (window.getComputedStyle) {
            
window.getComputedStyle(el'').color;
        } else {
            
= (el.currentStyle || el.style || {}).color;
        }

        
$div.remove();
        return 
c.replace(/ /g'') !== rgb;
    }


    
/**
     * Change text into safe HTML
     *
     * @param String text
     * @return String HTML version
     */
    
function htmlify(text) {
        if (!
text) {
            return 
"";
        }

        return $(
'<span />').text(text).html();
    }

    
/**
     * Test if the element is a multiselect
     *
     * @param jQuery $el Element
     * @return boolean true/false
     */
    
function isMultiselect($el) {
        var 
elSize;

        if (
$el[0].multiple) {
            return 
true;
        }

        
elSize attrOrProp($el"size");

        if (!
elSize || elSize <= 1) {
            return 
false;
        }

        return 
true;
    }

    
/**
     * Meaningless utility function.  Used mostly for improving minification.
     *
     * @return false
     */
    
function returnFalse() {
        return 
false;
    }

    
/**
     * noSelect plugin, very slightly modified
     * http://mths.be/noselect v1.0.3
     *
     * @param jQuery $elem Element that we don't want to select
     * @param Object options Uniform options for the element
     */
    
function noSelect($elemoptions) {
        var 
none 'none';
        
bindMany($elemoptions, {
            
'selectstart dragstart mousedown'returnFalse
        
});

        
$elem.css({
            
MozUserSelectnone,
            
msUserSelectnone,
            
webkitUserSelectnone,
            
userSelectnone
        
});
    }

    
/**
     * Updates the filename tag based on the value of the real input
     * element.
     *
     * @param jQuery $el Actual form element
     * @param jQuery $filenameTag Span/div to update
     * @param Object options Uniform options for this element
     */
    
function setFilename($el$filenameTagoptions) {
        var 
filename $el.val();

        if (
filename === "") {
            
filename options.fileDefaultHtml;
        } else {
            
filename filename.split(/[/\]+/);
            
filename filename[(filename.length 1)];
        }

        
$filenameTag.text(filename);
    }


    
/**
     * Function from jQuery to swap some CSS values, run a callback,
     * then restore the CSS.  Modified to pass JSLint and handle undefined
     * values with 'use strict'.
     *
     * @param jQuery $el Element
     * @param object newCss CSS values to swap out
     * @param Function callback Function to run
     */
    
function swap($elnewCsscallback) {
        var 
restoreitem;

        
restore = [];

        
$el.each(function () {
            var 
name;

            for (
name in newCss) {
                if (
Object.prototype.hasOwnProperty.call(newCssname)) {
                    
restore.push({
                        
elthis,
                        
namename,
                        
oldthis.style[name]
                    });

                    
this.style[name] = newCss[name];
                }
            }
        });

        
callback();

        while (
restore.length) {
            
item restore.pop();
            
item.el.style[item.name] = item.old;
        }
    }


    
/**
     * The browser doesn't provide sizes of elements that are not visible.
     * This will clone an element and add it to the DOM for calculations.
     *
     * @param jQuery $el
     * @param String method
     */
    
function sizingInvisible($elcallback) {
        
swap($el.parents().andSelf().not(':visible'), {
            
visibility"hidden",
            
display"block",
            
position"absolute"
        
}, callback);
    }


    
/**
     * Standard way to unwrap the div/span combination from an element
     *
     * @param jQuery $el Element that we wish to preserve
     * @param Object options Uniform options for the element
     * @return Function This generated function will perform the given work
     */
    
function unwrapUnwrapUnbindFunction($eloptions) {
        return function () {
            
$el.unwrap().unwrap().unbind(options.eventNamespace);
        };
    }

    var 
allowStyling true,  // False if IE6 or other unsupported browsers
        
highContrastTest false,  // Was the high contrast test ran?
        
uniformHandlers = [  // Objects that take care of "unification"
            
{
                
// Buttons
                
match: function ($el) {
                    return 
$el.is("a, button, :submit, :reset, input[type='button']");
                },
                
apply: function ($eloptions) {
                    var 
$divdefaultSpanHtmldsgetHtmldoingClickEvent;
                    
defaultSpanHtml options.submitDefaultHtml;

                    if (
$el.is(":reset")) {
                        
defaultSpanHtml options.resetDefaultHtml;
                    }

                    if (
$el.is("a, button")) {
                        
// Use the HTML inside the tag
                        
getHtml = function () {
                            return 
$el.html() || defaultSpanHtml;
                        };
                    } else {
                        
// Use the value property of the element
                        
getHtml = function () {
                            return 
htmlify(attrOrProp($el"value")) || defaultSpanHtml;
                        };
                    }

                    
ds divSpan($eloptions, {
                        
divClassoptions.buttonClass,
                        
spanHtmlgetHtml()
                    });
                    
$div ds.div;
                    
bindUi($el$divoptions);
                    
doingClickEvent false;
                    
bindMany($divoptions, {
                        
"click touchend": function () {
                            var 
evrestargethref;

                            if (
doingClickEvent) {
                                return;
                            }

                            
doingClickEvent true;

                            if (
$el[0].dispatchEvent) {
                                
ev document.createEvent("MouseEvents");
                                
ev.initEvent("click"truetrue);
                                
res $el[0].dispatchEvent(ev);

                                
// What about Chrome and Opera?
                                // Should the browser check be removed?
                                
if ((jQuery.browser.msie || jQuery.browser.mozilla) && $el.is('a') && res) {
                                    
target attrOrProp($el'target');
                                    
href attrOrProp($el'href');

                                    if (!
target || target === '_self') {
                                        
document.location.href href;
                                    } else {
                                        
window.open(hreftarget);
                                    }
                                }
                            } else {
                                
$el.click();
                            }

                            
doingClickEvent false;
                        }
                    });
                    
noSelect($divoptions);
                    return {
                        
remove: function () {
                            
// Move $el out
                            
$div.after($el);

                            
// Remove div and span
                            
$div.remove();

                            
// Unbind events
                            
$el.unbind(options.eventNamespace);
                            return 
$el;
                        },
                        
update: function () {
                            
classClearStandard($divoptions);
                            
classUpdateDisabled($div$eloptions);
                            
ds.span.html(getHtml());
                        }
                    };
                }
            },
            {
                
// Checkboxes
                
match: function ($el) {
                    return 
$el.is(":checkbox");
                },
                
apply: function ($eloptions) {
                    var 
ds$div$span;
                    
ds divSpan($eloptions, {
                        
divClassoptions.checkboxClass
                    
});
                    
$div ds.div;
                    
$span ds.span;

                    
// Add focus classes, toggling, active, etc.
                    
bindUi($el$divoptions);
                    
bindMany($eloptions, {
                        
"click touchend": function () {
                            
classUpdateChecked($span$eloptions);
                        }
                    });
                    
classUpdateChecked($span$eloptions);
                    return {
                        
removeunwrapUnwrapUnbindFunction($eloptions),
                        
update: function () {
                            
classClearStandard($divoptions);
                            
$span.removeClass(options.checkedClass);
                            
classUpdateChecked($span$eloptions);
                            
classUpdateDisabled($div$eloptions);
                        }
                    };
                }
            },
            {
                
// File selection / uploads
                
match: function ($el) {
                    return 
$el.is(":file");
                },
                
apply: function ($eloptions) {
                    var 
ds$div$filename$button;

                    
// The "span" is the button
                    
ds divSpan($eloptions, {
                        
divClassoptions.fileClass,
                        
spanClassoptions.fileButtonClass,
                        
spanHtmloptions.fileButtonHtml,
                        
spanWrap"after"
                    
});
                    
$div ds.div;
                    
$button ds.span;
                    
$filename = $("<span />").html(options.fileDefaultHtml);
                    
$filename.addClass(options.filenameClass);
                    
$filename divSpanWrap($el$filename"after");

                    
// Set the size
                    
if (!attrOrProp($el"size")) {
                        
attrOrProp($el"size"$div.width() / 10);
                    }

                    
// Actions
                    
function filenameUpdate() {
                        
setFilename($el$filenameoptions);
                    }

                    
bindUi($el$divoptions);

                    
// Account for input saved across refreshes
                    
filenameUpdate();

                    
// IE7 doesn't fire onChange until blur or second fire.
                    
if ($.browser.msie) {
                        
// IE considers browser chrome blocking I/O, so it
                        // suspends tiemouts until after the file has
                        // been selected.
                        
bindMany($eloptions, {
                            
click: function () {
                                
$el.trigger("change");
                                
setTimeout(filenameUpdate0);
                            }
                        });
                    } else {
                        
// All other browsers behave properly
                        
bindMany($eloptions, {
                            
changefilenameUpdate
                        
});
                    }

                    
noSelect($filenameoptions);
                    
noSelect($buttonoptions);
                    return {
                        
remove: function () {
                            
// Remove filename and button
                            
$filename.remove();
                            
$button.remove();

                            
// Unwrap parent div, remove events
                            
return $el.unwrap().unbind(options.eventNamespace);
                        },
                        
update: function () {
                            
classClearStandard($divoptions);
                            
setFilename($el$filenameoptions);
                            
classUpdateDisabled($div$eloptions);
                        }
                    };
                }
            },
            {
                
// Input fields (text)
                
match: function ($el) {
                    if (
$el.is("input")) {
                        var 
= (" " attrOrProp($el"type") + " ").toLowerCase(),
                            
allowed " color date datetime datetime-local email month number password search tel text time url week ";
                        return 
allowed.indexOf(t) >= 0;
                    }

                    return 
false;
                },
                
apply: function ($el) {
                    var 
elType attrOrProp($el"type");
                    
$el.addClass(elType);
                    return {
                        
remove: function () {
                            
$el.removeClass(elType);
                        },
                        
updatereturnFalse
                    
};
                }
            },
            {
                
// Radio buttons
                
match: function ($el) {
                    return 
$el.is(":radio");
                },
                
apply: function ($eloptions) {
                    var 
ds$div$span;
                    
ds divSpan($eloptions, {
                        
divClassoptions.radioClass
                    
});
                    
$div ds.div;
                    
$span ds.span;

                    
// Add classes for focus, handle active, checked
                    
bindUi($el$divoptions);
                    
bindMany($eloptions, {
                        
"click touchend": function () {
                            
// Find all radios with the same name, then update
                            // them with $.uniform.update() so the right
                            // per-element options are used
                            
$.uniform.update($(':radio[name="' attrOrProp($el"name") + '"]'));
                        }
                    });
                    
classUpdateChecked($span$eloptions);
                    return {
                        
removeunwrapUnwrapUnbindFunction($eloptions),
                        
update: function () {
                            
classClearStandard($divoptions);
                            
classUpdateChecked($span$eloptions);
                            
classUpdateDisabled($div$eloptions);
                        }
                    };
                }
            },
            {
                
// Select lists, but do not style multiselects here
                
match: function ($el) {
                    if (
$el.is("select") && !isMultiselect($el)) {
                        return 
true;
                    }

                    return 
false;
                },
                
apply: function ($eloptions) {
                    var 
ds$div$spanorigElemWidth;

                    if (
options.selectAutoWidth) {
                        
sizingInvisible($el, function () {
                            
origElemWidth $el.width();
                        });
                    }

                    
ds divSpan($eloptions, {
                        
divClassoptions.selectClass,
                        
spanHtml: ($el.find(":selected:first") || $el.find("option:first")).html(),
                        
spanWrap"before"
                    
});
                    
$div ds.div;
                    
$span ds.span;

                    if (
options.selectAutoWidth) {
                        
// Use the width of the select and adjust the
                        // span and div accordingly
                        
sizingInvisible($el, function () {
                            var 
spanPad;
                            
spanPad $span.outerWidth() - $span.width();
                            
$div.width(origElemWidth spanPad);
                            
$span.width(origElemWidth);
                        });
                    } else {
                        
// Force the select to fill the size of the div
                        
$div.addClass('fixedWidth');
                    }

                    
// Take care of events
                    
bindUi($el$divoptions);
                    
bindMany($eloptions, {
                        
change: function () {
                            
$span.html($el.find(":selected").html());
                            
$div.removeClass(options.activeClass);
                        },
                        
"click touchend": function () {
                            
// IE7 and IE8 may not update the value right
                            // until after click event - issue #238
                            
var selHtml $el.find(":selected").html();

                            if (
$span.html() !== selHtml) {
                                
// Change was detected
                                // Fire the change event on the select tag
                                
$el.trigger('change');
                            }
                        },
                        
keyup: function () {
                            
$span.html($el.find(":selected").html());
                        }
                    });
                    
noSelect($spanoptions);
                    return {
                        
remove: function () {
                            
// Remove sibling span
                            
$span.remove();

                            
// Unwrap parent div
                            
$el.unwrap().unbind(options.eventNamespace);
                            return 
$el;
                        },
                        
update: function () {
                            if (
options.selectAutoWidth) {
                                
// Easier to remove and reapply formatting
                                
$.uniform.restore($el);
                                
$el.uniform(options);
                            } else {
                                
classClearStandard($divoptions);

                                
// Reset current selected text
                                
$span.html($el.find(":selected").html());
                                
classUpdateDisabled($div$eloptions);
                            }
                        }
                    };
                }
            },
            {
                
// Select lists - multiselect lists only
                
match: function ($el) {
                    if (
$el.is("select") && isMultiselect($el)) {
                        return 
true;
                    }

                    return 
false;
                },
                
apply: function ($eloptions) {
                    
$el.addClass(options.selectMultiClass);
                    return {
                        
remove: function () {
                            
$el.removeClass(options.selectMultiClass);
                        },
                        
updatereturnFalse
                    
};
                }
            },
            {
                
// Textareas
                
match: function ($el) {
                    return 
$el.is("textarea");
                },
                
apply: function ($eloptions) {
                    
$el.addClass(options.textareaClass);
                    return {
                        
remove: function () {
                            
$el.removeClass(options.textareaClass);
                        },
                        
updatereturnFalse
                    
};
                }
            }
        ];

    
// IE6 can't be styled - can't set opacity on select
    
if ($.browser.msie && $.browser.version 7) {
        
allowStyling false;
    }

    $.
uniform = {
        
// Default options that can be overridden globally or when uniformed
        // globally:  $.uniform.defaults.fileButtonHtml = "Pick A File";
        // on uniform:  $('input').uniform({fileButtonHtml: "Pick a File"});
        
defaults: {
            
activeClass"active",
            
autoHidetrue,
            
buttonClass"button",
            
checkboxClass"checker",
            
checkedClass"checked",
            
disabledClass"disabled",
            
eventNamespace".uniform",
            
fileButtonClass"action",
            
fileButtonHtml"Choose File",
            
fileClass"uploader",
            
fileDefaultHtml"No file selected",
            
filenameClass"filename",
            
focusClass"focus",
            
hoverClass"hover",
            
idPrefix"uniform",
            
radioClass"radio",
            
resetDefaultHtml"Reset",
            
resetSelectorfalse,  // We'll use our own function when you don't specify one
            
selectAutoWidthtrue,
            
selectClass"selector",
            
selectMultiClass"uniform-multiselect",
            
submitDefaultHtml"Submit",  // Only text allowed
            
textareaClass"uniform",
            
useIDtrue
        
},

        
// All uniformed elements - DOM objects
        
elements: []
    };

    $.
fn.uniform = function (options) {
        var 
el this;
        
options = $.extend({}, $.uniform.defaultsoptions);

        
// If we are in high contrast mode, do not allow styling
        
if (!highContrastTest) {
            
highContrastTest true;

            if (
highContrast()) {
                
allowStyling false;
            }
        }

        
// Only uniform on browsers that work
        
if (!allowStyling) {
            return 
this;
        }

        
// Code for specifying a reset button
        
if (options.resetSelector) {
            $(
options.resetSelector).mouseup(function () {
                
window.setTimeout(function () {
                    $.
uniform.update(el);
                }, 
10);
            });
        }

        return 
this.each(function () {
            var 
$el = $(this), ihandlercallbacks;

            
// Avoid uniforming elements already uniformed - just update
            
if ($el.data("uniformed")) {
                $.
uniform.update($el);
                return;
            }

            
// See if we have any handler for this type of element
            
for (0uniformHandlers.length1) {
                
handler uniformHandlers[i];

                if (
handler.match($eloptions)) {
                    
callbacks handler.apply($eloptions);
                    
$el.data("uniformed"callbacks);

                    
// Store element in our global array
                    
$.uniform.elements.push($el.get(0));
                    return;
                }
            }

            
// Could not style this element
        
});
    };

    $.
uniform.restore = $.fn.uniform.restore = function (elem) {
        if (
elem === undef) {
            
elem = $.uniform.elements;
        }

        $(
elem).each(function () {
            var 
$el = $(this), indexelementData;
            
elementData $el.data("uniformed");

            
// Skip elements that are not uniformed
            
if (!elementData) {
                return;
            }

            
// Unbind events, remove additional markup that was added
            
elementData.remove();

            
// Remove item from list of uniformed elements
            
index = $.inArray(this, $.uniform.elements);

            if (
index >= 0) {
                $.
uniform.elements.splice(index1);
            }

            
$el.removeData("uniformed");
        });
    };

    $.
uniform.update = $.fn.uniform.update = function (elem) {
        if (
elem === undef) {
            
elem = $.uniform.elements;
        }

        $(
elem).each(function () {
            var 
$el = $(this), elementData;
            
elementData $el.data("uniformed");

            
// Skip elements that are not uniformed
            
if (!elementData) {
                return;
            }

            
elementData.update($elelementData.options);
        });
    };
}(
jQuery));
?>
Онлайн: 3
Реклама