aboutsummaryrefslogtreecommitdiffstats
path: root/src/core.js
Commit message (Collapse)AuthorAgeFilesLines
...
* 2.0: Removes attachEvent paths for jQuery.ready()Rick Waldron2012-12-261-44/+3
| | | | Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
* Followup to gh-1089. Avoid duplicate typeof check.Dave Methvin2012-12-231-7/+6
|
* Fix #13075. Optimize $.type by preferring `typeof`. Close gh-1089.Sebi Burkhard2012-12-231-3/+6
| | | | Also fixes browsers where `typeof RegExp === "function"`.
* Fix #13076. Speed up $() with strings, part of gh-1089.Sebi Burkhard2012-12-231-2/+2
|
* Adjust jQuery('html') detection to only match when html starts with '<' (not ↵timmywil2012-12-131-1/+2
| | | | counting space characters). Fixes #11290.
* Fixes #11938: Adding array getter method to jQuery.fn.cssMike Sherov2012-12-111-1/+1
|
* Fix #10417. setTimeout w/o 2nd arg is jQuery.later! Close gh-1065.Oleg2012-12-101-2/+2
|
* Be specific about Firefox nodes-as-nodelist. Never assume that modern ↵Rick Waldron2012-12-101-0/+4
| | | | | | browsers will "get it right". Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
* Fixes #13021. Normalization of core utility array like detection based on ↵Rick Waldron2012-12-101-28/+45
| | | | standard protocol by Richard Gibson <richard.gibson@gmail.com>. Closes gh-1064
* Fix #13013. Move jQuery.buildFragment() to compat plugin.Dave Methvin2012-12-061-1/+2
|
* Fix #11989. Remove fragment cache, moving to jquery-compat. Close gh-1052.Paul Ramos2012-12-041-2/+1
|
* Fix #12959: Optimize library-wide patternsRichard Gibson2012-11-271-25/+26
|
* Fix #12191. jQuery.type should return "error" for Error objects.Dave Methvin2012-11-241-1/+1
|
* Fix #11795, #10470: keep scripts in DOM; execute only on first insertion. ↵Richard Gibson2012-11-191-9/+15
| | | | Close gh-864.
* Remove APIs now in jquery-compatDave Methvin2012-11-071-1/+0
|
* Restore jQuery.access parameter mistakenly removed in 80d45a69Richard Gibson2012-11-061-14/+17
|
* Fix #12840: remove undocumented parameter "pass" from .attr. Close gh-1017.Richard Gibson2012-11-051-19/+30
|
* Follow-up for .selector property removalOleg2012-11-011-4/+3
|
* Fix #9469. Remove semi-functional .selector property. Close gh-1006.Dave Methvin2012-10-241-8/+1
| | | | Saved 65 bytes.
* Fix #12107. Let .proxy() curry args without overwriting context. Close gh-866.Marcel Greter2012-10-201-1/+1
|
* Don't expose jQuery.deletedIds. Close gh-889.Rick Waldron2012-10-201-0/+3
|
* Fix #4262: faster .eq(), closes gh-1000.Richard Gibson2012-10-191-8/+7
|
* Fix #12751. Ensure parseJson throws in the same situations as JSON.parse. ↵James Huston2012-10-171-13/+18
| | | | Close gh-993.
* no ticket: remove and enforce unused vars in jshintMike Sherov2012-10-171-1/+1
|
* Use the correct escape for BOM; add build code to detect non-ASCII.Dave Methvin2012-10-111-1/+1
|
* Use Uglify's ascii_only to avoid converting UTF-8 escapes.Dave Methvin2012-10-111-2/+1
| | | | Thanks @curiousdannii!
* Fix #12690. Avoid use of UTF-8 chars in final files.Dave Methvin2012-10-101-1/+2
|
* Fix #12229, size/consistency improvements. Close gh-887.Richard Gibson2012-09-181-3/+3
|
* Scorch the earth and retreat on readyState interactive! Close gh-907.Mike Sherov2012-08-231-2/+2
|
* Fix #12350: jQuery.trim should remove BOMRichard Gibson2012-08-211-3/+3
|
* Revert "Fix #12350. Remove BOM in jQuery.trim. Close gh-897."Dave Methvin2012-08-201-2/+2
| | | | | | | | This reverts commit 2b5b4ebbd78ce10cbbe2a6f057feea615fc69629. String.prototype.trim doesn't trim BOM in Safari 5.0 so this won't work without additional feature detects. http://swarm.jquery.org/result/165379
* Fix #12282. IE has premature .readyState == "interactive". Close gh-901.Mike Sherov2012-08-201-3/+4
|
* Fix #12350. Remove BOM in jQuery.trim. Close gh-897.Wesley Walser2012-08-191-2/+2
|
* Clean up regexen; use common regex for numbers. Close gh-862.Richard Gibson2012-07-221-2/+5
|
* Follow the style guide, lose 72 bytes! Closes gh-840.Mike Sherov2012-07-091-21/+31
|
* Fix #12018, readyState "interactive" in oldIE lies! Closes gh-848.Mike Sherov2012-07-061-4/+5
|
* Optimization of array operations, closes gh-844.Oleg2012-07-061-8/+2
|
* Stop using reserved words as argument names, closes gh-841.Mike Sherov2012-07-061-23/+23
|\
| * stop using reserved words as argument namesMike Sherov2012-06-281-23/+23
| |
* | Add back ID shortcut. It's about 3 times faster than going through ↵timmywil2012-07-021-14/+40
| | | | | | | | jQuery.fn.find and merging.
* | Move jQuery.sub to deprecated.js, because it is.Dave Methvin2012-06-291-21/+0
|/
* Fix #10895. Reduce IE poll interval to save CPU time.Dave Methvin2012-06-261-4/+3
|
* Adds src/deprecated.js, test/unit/deprecated.js; -deprecated flag; Moves ↵Rick Waldron2012-06-251-40/+1
| | | | jQuery.browser and removes use in test/unit/ajax.js. Fixes #11965
* Do jQuery.trim in less bytes (-5).timmywil2012-06-211-9/+4
|
* Add parseHTML for explicitly parsing strings into html. Fixes #11617.timmywil2012-06-211-17/+31
|
* Close GH-829: no ticket: smaller jQuery.ready.Richard Gibson2012-06-211-41/+38
|
* Restore rhtmlString to its original form. 1.9 will come with starts-with ↵timmywil2012-06-211-2/+1
| | | | html matching. For now, we are warning against broad use of jQuery() to parse html.
* Revert "Adjust jQuery('html') detection to only match when html starts with ↵timmywil2012-06-211-2/+3
| | | | | | | | '<' (counting space characters). Fixes #11290" This reverts commit 239fc86b01d52fd9df6d1963027ed37b4f6251fc. The consensus is that this would change behavior too abruptly. We will warn in 1.8 and do this in 1.9.
* Adjust jQuery('html') detection to only match when html starts with '<' ↵timmywil2012-06-201-3/+2
| | | | (counting space characters). Fixes #11290
* When detecting html in init, ignore html characters within quotes, brackets, ↵timmywil2012-06-191-1/+2
| | | | and parens as well as escaped characters which are valid in selectors. Fixes #11290.