aboutsummaryrefslogtreecommitdiffstats
path: root/src/manipulation.js
Commit message (Collapse)AuthorAgeFilesLines
...
* Manipulation: privatize buildFragment() functionTimmy Willison2015-05-051-151/+13
| | | | Fixes gh-2224
* Manipulation: Make an HTML interception pointRichard Gibson2015-04-301-2/+6
| | | | | Fixes gh-1747 Closes gh-2203
* Manipulation: Detect sneaky no-content replaceWith inputRichard Gibson2015-04-301-18/+21
| | | | | | | Fixes gh-2204 Ref 642e9a45579cfa90861b8ea71a95dd077775caaf Closes gh-1752 Closes gh-2206
* Data: restore explicit data removal of private data in cleanData.Rick Waldron2015-03-091-1/+1
| | | | | Fixes gh-2127 Closes gh-2132
* Data: move element cache to element[expando]Rick Waldron2015-03-041-20/+11
| | | | | | | | | - avoid explicit data.discard() cleanup calls - explicitly remove the data.events property, only when private data exists - reduces code footprint Fixes gh-1734 Close gh-1428
* Manipulation: don't auto-insert tbodyOleg Gaidarenko2015-02-111-6/+6
| | | | | Fixes gh-1835 Closes gh-2021
* Manipulation: simplify html wrappersOleg Gaidarenko2015-02-101-2/+13
| | | | | | | | Take advantage of html serialization for html wrappers - saves 26 bytes Plus add additional test for "col" element Closes gh-2031 Fixes gh-2002
* Manipulation: add support to tag-hyphenated elementsLeonardo Braga2015-01-131-2/+2
| | | | | Fixes #1987 Closes gh-1988
* Core: Standardize indexOf comparisonsRichard Gibson2015-01-101-1/+1
| | | | | | | | not present: `< 0` present: `> -1` at index: `=== N` Closes gh-1984
* Misc: Drop support for older browsers; update support commentsMichał Gołębiowski2014-11-031-6/+6
| | | | | | | | That includes Opera 12.x, Firefox<29, Safari<6.0 and some hacks for old Blackberry. Closes gh-1820 Refs gh-1815
* Docs: 1.x-master branch -> compat branch; 2.x branch -> master branchTimmy Willison2014-11-031-1/+0
|
* Manipulation: Tolerate XMLNode host object input to getAllRichard Gibson2014-09-041-2/+6
| | | | | | Fixes #15151 Ref 25712d77c3bc0221b5b2b9b9492c20a9cfbe1b17 Closes gh-1602
* Build: update grunt-jscs-checker and pass with the new rulesTimmy Willison2014-07-171-19/+21
|
* Support: clean up comments and Support notationDave Methvin2014-06-101-11/+9
| | | | Closes gh-1577
* Manipulation: don't use Object.keys for consistencyMichał Gołębiowski2014-03-091-4/+3
| | | | Fixes #14659
* No ticket: Reduce size by reordering variable declarations. Close gh-1416.Chris Antaki2013-11-051-5/+5
|
* Fix #11809: Update text without creating DOM nodes. Close gh-1412.Chris Antaki2013-11-051-1/+5
|
* Fixes #14450. Remove CommonJS+AMD syntax.Timmy Willison2013-10-151-18/+16
|
* Fix #14290. Don't throw if text node is appended to table. Close gh-1371.Dave Methvin2013-09-191-1/+1
|
* Simplify replaceWith method. Closes gh-1276Oleg2013-09-171-21/+11
|
* No ticket: fix code style inconsistencies. Closes gh-1361Oleg2013-09-131-4/+3
|
* Fix support test for checkClone. Fixes Safari 5.1 manip failures.Timmy Willison2013-09-111-2/+3
|
* Separate jQuery.fn.init into its own module (for lighter core dependencies ↵Timmy Willison2013-09-091-0/+1
| | | | across all modules)
* Apply consistent ordering in all modules. -38 bytes. Order modules like ↵Timmy Willison2013-09-091-270/+270
| | | | 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/+22
| | | | CommonJS+AMD build support to include non-var dependencies. Convert modules with more than a few dependencies to use CJS+AMD syntax.
* Always return jQuery in modules that can be included separatelyTimmy Willison2013-09-081-0/+2
|
* Fix #10814. Make support tests lazy and broken out to components.Michał Gołębiowski2013-09-061-5/+7
|
* Specify support as a dependency wherever it is used. Optimize module order ↵Timmy Willison2013-08-151-1/+2
| | | | to save 15 bytes.
* AMD-ify jQuery sourcegit s! Woo! Fixes #14113, #14163.Timmy Willison2013-08-151-24/+27
|
* Fixes #13976: Garbage input should not cause error in buildFragment. Close ↵ruado19872013-07-011-1/+1
| | | | gh-1284
* Optimize cleanData: allow direct access to data_priv for cleanupRick Waldron2013-05-131-22/+22
|
* Fix #13803: domManip remote-script evaluation per 1.9 (AJAX dataType "script")Richard Gibson2013-04-291-2/+2
|
* Fixes #13815: Ensure each element has its own private data object - Tests by ↵Corey Frang2013-04-241-3/+1
| | | | @rwldrn
* Fix #13818: Add wrapMap entry for col elementOleg2013-04-241-1/+2
|
* Fix #13810: .replaceWith(nextSibling)Richard Gibson2013-04-221-0/+4
|
* Remove unnecessary usage of getAttributeNode(). Fixes #12072.Timmy Willison2013-04-181-2/+1
|
* Fix #12838: hook point for non-jQuery.ajax synchronous script fetch/execute ↵Richard Gibson2013-04-171-8/+12
| | | | in domManip. Close gh-1051.
* Loop cleanupRick Waldron2013-04-161-10/+4
| | | | Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
* Fixes #13779. Remove nodes in document order (uses for loop matching empty()).Rick Waldron2013-04-161-2/+3
|
* Fix #13596; #13722: .replaceWith consistency. Close gh-1216.Richard Gibson2013-04-161-37/+41
|
* No ticket. Use data_priv methods instead of jQuery._removeData and ↵Oleg Gaidarenko2013-04-081-3/+6
| | | | jQuery._data; Remove needless, internal second argument of jQuery.cleanData. Closes gh-1234
* Improve CSS and `Support:` comments. Close gh-1220.Michał Gołębiowski2013-04-061-1/+1
| | | | | | | | 1) corrected box-sizing rules order - the unprefixed value should always be the last one 2) removed last semi-colons in CSS rules 3) updated support comments code review changes + more consistent comment spacing
* Fix #13721. Filter before .remove() loop so positionals work. Close gh-1221.Dave Methvin2013-04-061-13/+11
|
* Fix #13741. Make wrap/unwrap methods optional. Close gh-1222.Dave Methvin2013-04-061-68/+0
|
* Fix #13401: replaceWith(""). Close gh-1163.Mark Raddatz2013-02-081-9/+11
|
* 2.0: Rewrite data.js (Incl. event, manipulation, tests)Rick Waldron2013-02-031-27/+31
|
* Fix #13315 for IE9: compare typeof xmlNode.method to var instead of literal ↵Richard Gibson2013-01-271-1/+0
| | | | | | "undefined" for safer uglification (cherry picked from commit ec9b38a34fb9bd81d1903cf12b69466f699abca5)
* Fix #13282: QtWebKit (e.g., phantomjs) can only apply ArraysRichard Gibson2013-01-241-4/+12
|
* Fix #13232, fix jQuery.buildFragment for tables, close gh-1138.Oleg2013-01-201-3/+5
|
* Fix #13233: re-allow .replaceWith of text nodes. Close gh-1137.Richard Gibson2013-01-161-8/+2
| | | | (cherry picked from commit 6b1b0a26b4d485b4d9f334286efed5dfe33e3f3f)