aboutsummaryrefslogtreecommitdiffstats
path: root/src/serialize.js
Commit message (Collapse)AuthorAgeFilesLines
* Serialize: Fix object detectionMichał Gołębiowski2015-09-081-1/+1
| | | | | | | | | | | jQuery.type doesn't just return "null" for null but also e.g. "array" for arrays instead of object so it's not really a typeof analogue. My suggestion was stupid. Sorry. (cherry-picked from 14c0fe44328f22debb5b531d2b671923658542b3) Refs 3d7ce0a65f0707ff01a851822e57ba80adcff075
* Serialize: Handle arrays with null valuesDaniel Nill2015-09-071-1/+1
| | | | | | (cherry-picked from 3d7ce0a65f0707ff01a851822e57ba80adcff075) Closes gh-2436
* Build: Update jscs and lint filesOleg Gaidarenko2015-09-071-13/+23
| | | | | Ref 10fdad742a2a6aa9f0e00b3e04fc5264797c53c7 Fixes gh-2056
* Build: update grunt-jscs-checker and pass with the new rulesTimmy Willison2014-07-171-1/+6
| | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: build/tasks/build.js src/ajax/xhr.js src/attributes/classes.js src/attributes/prop.js src/attributes/val.js src/core/init.js src/core/ready.js src/css.js src/css/curCSS.js src/css/defaultDisplay.js src/data.js src/data/var/dataPriv.js src/data/var/dataUser.js src/dimensions.js src/effects.js src/event.js src/manipulation.js src/offset.js src/queue.js src/selector-native.js test/data/testrunner.js
* Fix some code style inconsistenciesOleg2013-11-071-4/+4
|
* Separate jQuery.fn.init into its own module (for lighter core dependencies ↵Timmy Willison2013-09-091-0/+1
| | | | | | | | | | across all modules). Restore proper support property for effects. Conflicts: src/attributes/classes.js src/core.js src/manipulation.js src/traversing.js
* Apply consistent ordering in all modules. -219 bytes. Order modules like ↵Timmy Willison2013-09-091-53/+53
| | | | functions > jQuery.extend > jQuery.fn.extend.
* Always return jQuery in modules that can be included separatelyTimmy Willison2013-09-081-0/+2
| | | | | | | Conflicts: src/attributes.js src/data.js src/manipulation.js
* AMD-ify jQuery sourcegit s! Woo! Fixes #14113, #14163.Timmy Willison2013-08-151-3/+11
| | | | | | | | | | | | | | | | | | | | Conflicts: Gruntfile.js README.md src/ajax.js src/ajax/xhr.js src/attributes.js src/core.js src/css.js src/data.js src/effects.js src/event.js src/manipulation.js src/offset.js src/selector-native.js src/traversing.js test/unit/core.js test/unit/data.js
* Ignore file inputs when serializing forms. File input serialization is ↵Timmy Willison2013-01-231-1/+1
| | | | handled by plugins. Fixes #13306.
* Fix #12959: Optimize library-wide patternsRichard Gibson2012-11-271-3/+2
|
* Fix #12134. Make .serialize() HTML5-compliant; provide a propHook for shimming.Dave Methvin2012-11-251-13/+12
|
* no ticket: remove and enforce unused vars in jshintMike Sherov2012-10-171-1/+1
|
* Extracts the serialization code from the ajax module so that alternative ↵jaubourg2012-07-131-0/+101
ajax implementations can use it without the need for the whole ajax module to be included in the build.