aboutsummaryrefslogtreecommitdiffstats
path: root/src/manipulation.js
Commit message (Collapse)AuthorAgeFilesLines
* Fix some code style inconsistenciesOleg2013-11-071-3/+3
|
* Fixes #14450. Remove CommonJS+AMD syntax.Timmy Willison2013-10-151-22/+17
| | | | | | | | | | | | - To keep file size unaffected, an extra pragma was added to build.js to remove certain lines when building with special comments. Conflicts: src/core.js src/css.js src/effects.js src/event.js src/manipulation.js src/offset.js
* Fix #14290. Don't throw if text node is appended to table. Close gh-1371.Dave Methvin2013-09-191-1/+1
| | | | (cherry picked from commit ec3ac9a247ec3132dea3c30ca36cefc217e25441)
* Simplify replaceWith method. Closes gh-1276Oleg2013-09-171-21/+11
| | | | (cherry picked from commit 642e9a45579cfa90861b8ea71a95dd077775caaf)
* Fix support test for checkClone. Fixes Safari 5.1 manip failures.Timmy Willison2013-09-111-1/+3
| | | | | Conflicts: src/manipulation.js
* Separate jQuery.fn.init into its own module (for lighter core dependencies ↵Timmy Willison2013-09-091-6/+6
| | | | | | | | | | 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-307/+308
| | | | functions > jQuery.extend > jQuery.fn.extend.
* Break jQuery.access out into its own module to separate it from core; Adjust ↵Timmy Willison2013-09-091-17/+24
| | | | | | | | | | | | | CommonJS+AMD build support to include non-var dependencies. Convert modules with more than a few dependencies to use CJS+AMD syntax. Conflicts: src/core.js src/css.js src/data.js src/effects.js src/event.js src/manipulation.js src/traversing.js
* Always return jQuery in modules that can be included separatelyTimmy Willison2013-09-081-1/+1
| | | | | | | Conflicts: src/attributes.js src/data.js src/manipulation.js
* Fix #10814. Fix #14084. Make support tests lazy and broken out to components.Michał Gołębiowski2013-09-061-15/+15
|
* Don't execute DOM ready tests in AMD mode (they aren't loaded before DOM ↵Oleg Gaidarenko2013-08-161-1/+2
| | | | ready). Close gh-1335.
* Specify support as a dependency wherever it is used. Optimize module order ↵Timmy Willison2013-08-151-1/+2
| | | | | | | | | | to save 15 bytes. Conflicts: src/css.js src/manipulation.js src/offset.js src/support.js
* AMD-ify jQuery sourcegit s! Woo! Fixes #14113, #14163.Timmy Willison2013-08-151-25/+28
| | | | | | | | | | | | | | | | | | | | 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
* Fix #13803: domManip remote-script evaluation per 1.9 (AJAX dataType "script")Richard Gibson2013-04-291-2/+2
| | | | (cherry picked from commit 18cccd04a6f69018242bce96ef905bc5d3be6ff8)
* Fix #13810: .replaceWith(nextSibling)Richard Gibson2013-04-221-0/+4
| | | | (cherry picked from commit d8f7e8371230a6dd504ca02e65442745b6ff6ce2)
* Fix failing test in manipulation. Empty string values are acceptable.Timmy Willison2013-04-181-1/+1
|
* Remove usage of the deprecated getAttributeNode() unless a support test ↵Timmy Willison2013-04-181-2/+1
| | | | warrants it. Fixes #12072.
* Fix #13741. Make wrap/unwrap methods optional; close gh-1236.Michał Gołębiowski2013-04-171-65/+0
| | | | | | | move size() test to unit/deprecated; don't use size() in other tests; make 2 unit tests actually fire; code cleanup
* Fix #12838: hook point for non-jQuery.ajax synchronous script fetch/execute ↵Richard Gibson2013-04-171-8/+12
| | | | | | in domManip. Close gh-1051. (cherry picked from commit 03db1ada2cc223edf545c5a452e55062647837fa)
* Fixes #13779. Remove nodes in document orderRick Waldron2013-04-161-3/+2
| | | | Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
* Fix #13596; #13722: .replaceWith consistency. Close gh-1216.Richard Gibson2013-04-161-37/+41
|
* Fix indentation issue with last cherry-pick.Dave Methvin2013-04-061-8/+8
|
* Fix #13721. Filter before .remove() loop so positionals work. Close gh-1221.Dave Methvin2013-04-061-4/+5
| | | | (Cherry picked from 1b610266502490eab42a0b9ddfac2f93da0b0fe1)
* Fix #13401: replaceWith(""). Close gh-1163.Mark Raddatz2013-02-081-9/+11
| | | | (cherry picked from commit 6a0ee2d9ed34b81d4ad0662423bf815a3110990f)
* Fix #13355. Tweak Uglify options and var order for gzip. Close gh-1151.Oleg2013-01-311-5/+7
| | | | | Change uglify-js options for compressor Change variables initialization sequence for some declarations
* Change variables initialization sequence for some declarationsOleg2013-01-311-4/+4
|
* Fix #13315: compare typeof node.method to var instead of literal "undefined" ↵Richard Gibson2013-01-241-3/+3
| | | | for safer uglification
* Fix #13233: re-allow .replaceWith of text nodes. Close gh-1137.Richard Gibson2013-01-161-8/+2
|
* Add a commentOleg2013-01-131-0/+2
|
* Fixes #13200 - innerHTML in buildFragment need end tagsOleg2013-01-131-10/+11
|
* Ref 0ed497b. Close gh-1125.Oleg2013-01-111-25/+23
|
* Ref gh-1117: Don't stop on a falsy value in buildFragment.Oleg2013-01-091-10/+15
| | | | (cherry picked from commit 8e6c1ba92faf830d40cafe7a4deb4ad5ab9045fe)
* Resurrect buildFragment and sacrifice jQuery.clean. See gh-1117.Dave Methvin2013-01-081-25/+23
|
* Fix #12863. Prevent oldIE from calling `.removeAttribute`Dave Methvin2013-01-061-1/+1
|
* Fix #12336. Ensure oldIE really does .empty() selects.Dave Methvin2013-01-061-0/+6
|
* Fix #13094. Pass index to .before(fn) fn as documented. Close gh-1093.Oleg2012-12-201-3/+4
|
* compress -16 min+gzipRichard Gibson2012-12-131-11/+13
|
* Ref #8908, gh-886. Avoid clone identity crisis in IE9/10. Close gh-1036.Oleg2012-12-131-7/+3
|
* Fix #11230. .appendTo and pals should always stack.Dave Methvin2012-12-131-10/+4
|
* Fix #4087. insertAfter, insertBefore, etc do not work if origin and ↵Paul Ramos2012-12-111-4/+8
| | | | destination are same element. Close gh-1068.
* copy defaultSelected in cloneFixAttributesRichard Gibson2012-12-111-1/+1
|
* Fix #12956. Improve cloneFixAttributes for IE9/10 case. Close gh-1034.Oleg2012-12-111-26/+15
| | | | Remove clear(merge)Attributes hack
* Ref #13019 and gh-1062. Use parentNode check instead of isDisconnected().Dave Methvin2012-12-091-6/+5
|
* Fix #13019. Disconnected nodes with .replaceWith are a noop. Close gh-1062.Dave Methvin2012-12-091-11/+3
|
* Fix #13013. Move jQuery.buildFragment() to compat plugin.Dave Methvin2012-12-061-19/+4
|
* Fixes #12449. make replaceWith() clone elements where required. Closes gh-920Rod Vagg2012-12-041-19/+17
|
* Fix #11989. Remove fragment cache, moving to jquery-compat. Close gh-1052.Paul Ramos2012-12-041-35/+8
|
* Fix #12957. Simplify wrapMap, it doesn't need end tags. Close gh-1044.Oleg2012-11-271-10/+10
|
* Fix #12959: Optimize library-wide patternsRichard Gibson2012-11-271-6/+6
|
* Fix #9960, allow manipulation for parent document nodes. Close gh-924.dcooper2012-11-241-2/+2
|