diff options
Diffstat (limited to 'srcs/wordpress/wp-includes/js/jquery/jquery.serialize-object.js')
| -rw-r--r-- | srcs/wordpress/wp-includes/js/jquery/jquery.serialize-object.js | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/srcs/wordpress/wp-includes/js/jquery/jquery.serialize-object.js b/srcs/wordpress/wp-includes/js/jquery/jquery.serialize-object.js deleted file mode 100644 index 03b905b..0000000 --- a/srcs/wordpress/wp-includes/js/jquery/jquery.serialize-object.js +++ /dev/null @@ -1,31 +0,0 @@ -/*! - * jQuery serializeObject - v0.2 - 1/20/2010 - * http://benalman.com/projects/jquery-misc-plugins/ - * - * Copyright (c) 2010 "Cowboy" Ben Alman - * Dual licensed under the MIT and GPL licenses. - * http://benalman.com/about/license/ - */ - -// Whereas .serializeArray() serializes a form into an array, .serializeObject() -// serializes a form into an (arguably more useful) object. - -(function($,undefined){ - '$:nomunge'; // Used by YUI compressor. - - $.fn.serializeObject = function(){ - var obj = {}; - - $.each( this.serializeArray(), function(i,o){ - var n = o.name, - v = o.value; - - obj[n] = obj[n] === undefined ? v - : $.isArray( obj[n] ) ? obj[n].concat( v ) - : [ obj[n], v ]; - }); - - return obj; - }; - -})(jQuery); |
