aboutsummaryrefslogtreecommitdiffstats
path: root/src/core.js
Commit message (Collapse)AuthorAgeFilesLines
...
* 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.
* Move quickIs to Sizzle; Remove duplicate id matching in init; Added selector ↵timmywil2012-06-181-46/+20
| | | | caching to Sizzle. Fixes #11826.
* Interim take on cross-module variables, closes gh-817.Richard Gibson2012-06-151-50/+50
|
* Strips IIFEs from modules; Always require built jQuery for tests.Rick Waldron2012-06-041-15/+14
|
* @mikesherov said: no need for an else if!jaubourg2012-05-071-1/+1
|
* Simplify jQuery( html, props ), closes gh-765.Scott González2012-05-061-6/+3
|
* Transform $.bindReady into $.ready.promise. It is now possible to use ↵jaubourg2012-05-061-50/+46
| | | | $.ready.promise or $.when( $.ready ) to get the ready promise. Costs *1* byte min/gzipped. Unit test added.
* reduce complexity of ready further, and try manipulating DOM to make sure ↵Mike Sherov2012-05-041-7/+5
| | | | we're really ready
* remove jQuery.quickReady, save bytes, style nits in testsMike Sherov2012-05-041-28/+13
|
* Fix #10067. Create jQuery.quickReady; closes gh-736.Mike Sherov2012-04-231-3/+13
| | | | Allows us to get to the ready state sooner by not waiting for iframes to load. If that causes backcompat pain, use `jQuery.quickReady = false` as prescribed by your developer.
* Remove $("body") case; $(document.body) is 2x faster.Dave Methvin2012-04-181-9/+0
|
* Fix #8894. Ensure `.appendTo` creates a new set in oldIE.Oleg2012-04-161-1/+1
|
* Remove moot second argument from `slice.call()`Sindre Sorhus2012-04-041-1/+1
| | | | The zeroes were added to fix http://bugs.jquery.com/ticket/4942 but those browsers are no longer supported.
* Fix #11325: smaller/stronger domManip/buildFragment/cleanRichard Gibson2012-04-041-1/+1
|
* Makes parseXML act like parseJSON when given an empty or non-string input: ↵jaubourg2012-03-071-0/+3
| | | | now returns null rather than throwing an exception. Incidently fixes #10527. Unit tests added.
* Refine the jQuery.isWindow check.RafaC3ABl Blais Masson2011-12-061-2/+1
|