]> source.dussan.org Git - jquery.git/log
jquery.git
9 years agoCore: Don't expose jQuery.access 2524/head
Michał Gołębiowski [Mon, 3 Aug 2015 17:31:25 +0000 (19:31 +0200)]
Core: Don't expose jQuery.access

jQuery.access was never documented, there is no need to keep it exposed.

Fixes gh-2513
Closes gh-2524

9 years agoBuild: Add a comment explaining why the es3 option is needed
Michał Gołębiowski [Sat, 1 Aug 2015 23:48:54 +0000 (01:48 +0200)]
Build: Add a comment explaining why the es3 option is needed

It might not be obvious to everyone that IE 9 & Android 4.0 are not
ES5-compliant browsers (by a large margin) so it's better to add a support
comment. This requires slight changes in parsing the config file
as it's not a pure JSON anymore. JSHint understands such files without
problems.

Closes gh-2520

9 years agoTests: don't use deprecated argument in test declaration
Oleg Gaidarenko [Wed, 29 Jul 2015 15:10:04 +0000 (18:10 +0300)]
Tests: don't use deprecated argument in test declaration

Closes gh-2507

9 years agoDocs: Fix various spelling mistakes
Bruno Pérel [Thu, 30 Jul 2015 13:34:34 +0000 (15:34 +0200)]
Docs: Fix various spelling mistakes

Closes gh-2487

9 years agoData: remove user data in cleanData
Jason Bedard [Sun, 19 Jul 2015 00:47:31 +0000 (17:47 -0700)]
Data: remove user data in cleanData

Fixes gh-2503
Closes gh-2480

9 years agoAjax: Account for Android 2.3 not firing window.onerror on script errors
Michał Gołębiowski [Mon, 5 May 2014 18:04:03 +0000 (20:04 +0200)]
Ajax: Account for Android 2.3 not firing window.onerror on script errors

Android 2.3 doesn't fire the window.onerror handler, just accept the reality
there and skip the test.

Refs gh-1573
Refs gh-1786
Refs jquery/jquery.com#108
Closes gh-2458

9 years agoEvent: Update support comments for mouseenter/mouseleave implementation
Michał Gołębiowski [Mon, 27 Jul 2015 20:29:38 +0000 (22:29 +0200)]
Event: Update support comments for mouseenter/mouseleave implementation

Custom mouseenter/mouseleave implementation was needed because of:
1. Safari 6 not implementing mouseenter/mouseleave at all.
2. Chrome sending mouseenter too often.

The second issue has been fixed in Chrome but exists now in Safari 7
(it's fixed in Safari 8) so we have to keep it for now, unfortunately.

9 years agoCore: Adjust comments & tests after dropping Safari 6 support
Michał Gołębiowski [Mon, 27 Jul 2015 20:14:48 +0000 (22:14 +0200)]
Core: Adjust comments & tests after dropping Safari 6 support

Support comments that mentioned only Safari < 7 were checked & updated
to account for bugs existing in newer versions as well; Safari 6 support
test results were removed.

Refs gh-2482

9 years agoCore: .each/.map should accept an undefined/null value
Thomas Tortorini [Thu, 25 Jun 2015 04:18:04 +0000 (06:18 +0200)]
Core: .each/.map should accept an undefined/null value

Fixes gh-2267
Closes gh-2363

9 years agoCore: Add a support comment for Safari 8
Michał Gołębiowski [Mon, 20 Jul 2015 18:22:34 +0000 (20:22 +0200)]
Core: Add a support comment for Safari 8

Related issue: https://bugs.webkit.org/show_bug.cgi?id=137337

Thanks @phistuck!

Refs cfe468f29c4cbe1a457d0feb17dec90dcfd7c280

9 years agoBuild: Acknowledge Android 2.3 is not ES5-compatible
Michał Gołębiowski [Sun, 19 Jul 2015 22:55:48 +0000 (00:55 +0200)]
Build: Acknowledge Android 2.3 is not ES5-compatible

Android 2.3 chokes on unquoted reserved words being used as property names
which was making Deferred tests not run.

Acknowledge the sad fact that Android 2.3 is not ES5-compliant browser
and enable the "es3" option in JSHint config.

Fixes gh-2478
Closes gh-2481

9 years agoSelector: Define jQuery.uniqueSort in selector-native too
Marek Lewandowski [Mon, 13 Jul 2015 12:39:52 +0000 (14:39 +0200)]
Selector: Define jQuery.uniqueSort in selector-native too

Fixes gh-2466
Closes gh-2467

9 years agoRelease: properly set the dist remote when it's a real release
Timmy Willison [Mon, 13 Jul 2015 19:01:33 +0000 (15:01 -0400)]
Release: properly set the dist remote when it's a real release

9 years agoAjax: Remove jsonp callbacks through "jQuery#removeProp" method
Oleg Gaidarenko [Fri, 10 Jul 2015 17:58:43 +0000 (20:58 +0300)]
Ajax: Remove jsonp callbacks through "jQuery#removeProp" method

Fixes gh-2323
Closes gh-2464

9 years agoBuild: add mailmap entry
Timmy Willison [Sat, 11 Jul 2015 15:41:06 +0000 (11:41 -0400)]
Build: add mailmap entry

9 years agoBuild: update AUTHORS.txt
Timmy Willison [Wed, 8 Jul 2015 17:41:48 +0000 (13:41 -0400)]
Build: update AUTHORS.txt

9 years agoTests: Remove a trailing comma for compatibility with the compat branch
Michał Gołębiowski [Wed, 8 Jul 2015 11:00:38 +0000 (13:00 +0200)]
Tests: Remove a trailing comma for compatibility with the compat branch

9 years agoCSS: Add an integration test for issue gh-1764
Michał Gołębiowski [Mon, 22 Jun 2015 23:44:18 +0000 (01:44 +0200)]
CSS: Add an integration test for issue gh-1764

Refs gh-1764
Refs gh-2401
Closes gh-2425

9 years agoCSS: Make .css("width") & .css("height") return fractional values
Michał Gołębiowski [Wed, 1 Jul 2015 23:20:18 +0000 (01:20 +0200)]
CSS: Make .css("width") & .css("height") return fractional values

Fixes gh-1724
Closes gh-2439

9 years agoDeferred: add .catch handler 2451/head
Timmy Willison [Mon, 6 Jul 2015 14:13:01 +0000 (10:13 -0400)]
Deferred: add .catch handler

Fixes gh-2102

9 years agoCSS: Improve a comment explaining IE11 fullscreen bug
Michał Gołębiowski [Wed, 1 Jul 2015 21:20:32 +0000 (23:20 +0200)]
CSS: Improve a comment explaining IE11 fullscreen bug

9 years agoTests: Lower the checks rounding error
Corey Frang [Sat, 27 Jun 2015 00:20:48 +0000 (20:20 -0400)]
Tests: Lower the checks rounding error

The CSS value rounding error was causig failures on FF and IE.

9 years agoEffects: Adding unit tests for jQuery.Animation 2326/head
Corey Frang [Tue, 19 May 2015 21:48:42 +0000 (17:48 -0400)]
Effects: Adding unit tests for jQuery.Animation

Closes gh-2326

9 years agoEffects: Add tests for jQuery.Tween
Corey Frang [Mon, 18 May 2015 21:11:21 +0000 (17:11 -0400)]
Effects: Add tests for jQuery.Tween

9 years agoCSS: make the getStyles function more readable
Thomas Tortorini [Sun, 14 Jun 2015 21:58:44 +0000 (23:58 +0200)]
CSS: make the getStyles function more readable

The new version is not only simpler to read but also smaller
by 6 bytes gzipped.

Closes gh-2393

9 years agoCore: organize prop & attr code to be similar
Gilad Peleg [Wed, 10 Jun 2015 14:56:17 +0000 (17:56 +0300)]
Core: organize prop & attr code to be similar

Closes gh-2384

9 years agoCSS: Work around an IE11 fullscreen dimensions bug
Martin Naumann [Tue, 16 Jun 2015 21:55:21 +0000 (23:55 +0200)]
CSS: Work around an IE11 fullscreen dimensions bug

Fixes gh-1764
Closes gh-2401

9 years agoBuild: space between curly and paren is optional
Timmy Willison [Tue, 16 Jun 2015 15:24:21 +0000 (11:24 -0400)]
Build: space between curly and paren is optional

Fixes gh-2399
Close gh-2400

9 years agoCore: Switch from modules to just window.setTimeout etc.
Michał Gołębiowski [Wed, 17 Jun 2015 10:55:59 +0000 (12:55 +0200)]
Core: Switch from modules to just window.setTimeout etc.

Using modules for window.setTimeout etc. made those functions cached and
disabled Sinon mocking, making effects tests fail. Just writing
window.setTimeout directly is smaller anyway.

9 years agoCore: Use window.setTimeout & friends instead of global equivalents 2397/head
Michał Gołębiowski [Sun, 14 Jun 2015 17:21:57 +0000 (19:21 +0200)]
Core: Use window.setTimeout & friends instead of global equivalents

Fixes gh-2177

9 years agoOffset: add tests for hidden elements + scroll
Timmy Willison [Tue, 16 Jun 2015 17:24:12 +0000 (13:24 -0400)]
Offset: add tests for hidden elements + scroll

- Also add comments to hidden/disconnected tests noting
  this is to ensure consistency between branches

9 years agoOffset: return before getBoundingClientRect to avoid error in IE8-11
Timmy Willison [Tue, 16 Jun 2015 15:21:58 +0000 (11:21 -0400)]
Offset: return before getBoundingClientRect to avoid error in IE8-11

9 years agoOffset: return zeros for disconnected/hidden elements
Timmy Willison [Mon, 15 Jun 2015 15:02:08 +0000 (11:02 -0400)]
Offset: return zeros for disconnected/hidden elements

Fixes gh-2310
Close gh-2396

9 years agoRevert "Offset: allow offset setter to throw for disconnected elements"
Timmy Willison [Mon, 15 Jun 2015 14:56:29 +0000 (10:56 -0400)]
Revert "Offset: allow offset setter to throw for disconnected elements"

This reverts commit 0d11c1182f2012cd6eb06ce1e3fa5a495af9bee3.

9 years agoTests: Remove test/data/ua.txt
Michał Gołębiowski [Tue, 16 Jun 2015 14:25:16 +0000 (16:25 +0200)]
Tests: Remove test/data/ua.txt

The file was used by $.browser tests but $.browser now doesn't exists
in Core and this file hasn't been updated for a few years.

Fixes gh-2398

9 years agoTests: Remove Edge version from the user agent
Michał Gołębiowski [Tue, 16 Jun 2015 12:44:24 +0000 (14:44 +0200)]
Tests: Remove Edge version from the user agent

The version will change in the future, matching by /edge\//i is enough

Refs 8e111df641cca3e1b75b31a1971bfc89014b4ded

9 years agoTests: Add Microsoft Edge results (from Windows 10 build 10130)
Michał Gołębiowski [Sat, 13 Jun 2015 22:50:05 +0000 (00:50 +0200)]
Tests: Add Microsoft Edge results (from Windows 10 build 10130)

The Microsoft Edge user agent contains "Chrome" so it needs to be checked
before Chrome.

9 years agoTests: Correct a typo in the regex matching Safari 8
Michał Gołębiowski [Sat, 13 Jun 2015 22:37:31 +0000 (00:37 +0200)]
Tests: Correct a typo in the regex matching Safari 8

9 years agoManipulation: Remove an internal argument to the remove method 2366/head
Michał Gołębiowski [Mon, 1 Jun 2015 19:35:13 +0000 (21:35 +0200)]
Manipulation: Remove an internal argument to the remove method

Fixes gh-2301
Closes gh-2366

9 years agoEvent: Remove an internal argument to the on method
Michał Gołębiowski [Mon, 1 Jun 2015 19:34:57 +0000 (21:34 +0200)]
Event: Remove an internal argument to the on method

Refs gh-2301

9 years agoCore: Make jQuery objects iterable 2369/head
Michał Gołębiowski [Mon, 1 Jun 2015 21:25:38 +0000 (23:25 +0200)]
Core: Make jQuery objects iterable

Make iterating over jQuery objects possible using ES 2015 for-of:

    for ( node of $( "<div id=narwhal>" ) ) {
        console.log( node.id ); // "narwhal"
    }

Fixes gh-1693

9 years agoBuild: Refactor Node smoke tests
Michał Gołębiowski [Mon, 1 Jun 2015 21:25:38 +0000 (23:25 +0200)]
Build: Refactor Node smoke tests

Utilize the assert module, avoid inline JSHint comments.

9 years agoBuild: Update grunt-contrib-jshint
Michał Gołębiowski [Mon, 1 Jun 2015 21:25:38 +0000 (23:25 +0200)]
Build: Update grunt-contrib-jshint

9 years agoBuild: remove bower.json lint target
Oleg Gaidarenko [Thu, 11 Jun 2015 13:25:36 +0000 (16:25 +0300)]
Build: remove bower.json lint target

Ref 26eca143c2dd857b9e3d1c446a467fed16e903d2

9 years agoEvent: remove preDispatch hook & simplify "simulate" signature
Oleg Gaidarenko [Thu, 28 May 2015 21:51:22 +0000 (00:51 +0300)]
Event: remove preDispatch hook & simplify "simulate" signature

Closes gh-2358

9 years agoCSS: Don't name the anonymous swap function
Michał Gołębiowski [Mon, 1 Jun 2015 17:55:18 +0000 (19:55 +0200)]
CSS: Don't name the anonymous swap function

IE8 doesn't like named anonymous expressions. Not naming the function
expression reduces the gzipped size by 5 bytes.

In ECMAScript 2015 the function will get the name inferred from the
variable name (here: swap) anyway.

(cherry-picked from e847574fc755b5339f3de41bcebd5b2a3e140cfe)

Refs 02a9d9f94b623ea8664b7b39fd57feb7de6c6a14

9 years agoBuild: Update the license attribute
Gilad Peleg [Tue, 19 May 2015 11:05:21 +0000 (14:05 +0300)]
Build: Update the license attribute

Specifying the type and URL is deprecated:

https://docs.npmjs.com/files/package.json#license
http://npm1k.org/

Fixes gh-2331
Closes gh-2330

9 years agoAjax: Remove remnants of the load event alias handling
Michał Gołębiowski [Sat, 30 May 2015 17:09:32 +0000 (19:09 +0200)]
Ajax: Remove remnants of the load event alias handling

Refs 0705be475092aede1eddae01319ec931fb9c65fc
Refs gh-2287
Closes gh-2362

9 years agoCSS: Don't cache unrecognized CSS property names
Michał Gołębiowski [Mon, 11 May 2015 21:23:09 +0000 (23:23 +0200)]
CSS: Don't cache unrecognized CSS property names

This prevents jQuery from caching a prefixed property name if provided
directly by the user, e.g. the following code:

elem.css( "msTransform", "translate(5px, 2px)" );

should not prevent one from from later setting the transition directly:

elem.css( "transform", "translate(5px, 2px)" );

on a browser not understanding the unprefixed version which is the case
for Safari 8 & transform.

Fixes gh-2015
Closes gh-2298

9 years agoEvent: remove outdated originalEvent hack
Oleg Gaidarenko [Wed, 20 May 2015 15:09:46 +0000 (18:09 +0300)]
Event: remove outdated originalEvent hack

Closes gh-2335
Ref 7475d5debeb7c53158921ed40f6c2fdb25a2cc86

9 years agoEvent: Remove fake originalEvent from jQuery.Event.simulate
Gabriel Schulhof [Tue, 12 May 2015 12:30:05 +0000 (15:30 +0300)]
Event: Remove fake originalEvent from jQuery.Event.simulate

Fixes gh-2300
Closes gh-2303

9 years agoDocs: remove redundant instruction from the readme
Oleg Gaidarenko [Fri, 29 May 2015 16:45:02 +0000 (19:45 +0300)]
Docs: remove redundant instruction from the readme

Thanks @elas7

Fixes gh-2359

9 years agoBuild: update requirejs dependency to 2.1.17
Oleg Gaidarenko [Tue, 19 May 2015 15:45:14 +0000 (18:45 +0300)]
Build: update requirejs dependency to 2.1.17

Fixes gh-2290

9 years agoEvent: remove deprecated event aliases
Oleg Gaidarenko [Sat, 9 May 2015 18:39:49 +0000 (21:39 +0300)]
Event: remove deprecated event aliases

Fixes gh-2286
Closes gh-2287
Ref trac-11733

9 years agoEvent: provide verbose comment for focus(in | out) & rename support prop
Oleg Gaidarenko [Tue, 12 May 2015 22:15:19 +0000 (01:15 +0300)]
Event: provide verbose comment for focus(in | out) & rename support prop

Closes gh-2312

9 years agoBuild: bower.json: remove moot `version` field
Chris Rebert [Wed, 13 May 2015 03:13:46 +0000 (20:13 -0700)]
Build: bower.json: remove moot `version` field

Related:
https://github.com/bower/bower.json-spec/commit/a325da3d79baab018c572d75dc1781b12322f6cd

Close gh-2304

9 years agoOffset: account for scroll when calculating position
Richard McDaniel [Thu, 16 Oct 2014 19:32:46 +0000 (15:32 -0400)]
Offset: account for scroll when calculating position

Fixes gh-1708
Close gh-1714

9 years agoCore: remove custom ready event
Timmy Willison [Wed, 6 May 2015 17:47:07 +0000 (10:47 -0700)]
Core: remove custom ready event

Fixes gh-2264
Close gh-2265

9 years agoAttributes: add SVG class manipulation
Timmy Willison [Wed, 6 May 2015 20:30:16 +0000 (13:30 -0700)]
Attributes: add SVG class manipulation

- Note: support for SVG is limited in jQuery,
  but this is one area where the cost vs benefit ratio
  was acceptable.

Fixes gh-2199
Close gh-2268

9 years agoData: remove the expando when there's no more data
Timmy Willison [Wed, 6 May 2015 22:29:06 +0000 (15:29 -0700)]
Data: remove the expando when there's no more data

Fixes gh-1760
Close gh-2271

9 years agoData: remove some unused code
Timmy Willison [Wed, 6 May 2015 22:28:38 +0000 (15:28 -0700)]
Data: remove some unused code

9 years agoTests: fix tests in accordance with new :visible behavior
Timmy Willison [Tue, 12 May 2015 13:58:55 +0000 (09:58 -0400)]
Tests: fix tests in accordance with new :visible behavior

9 years agoCSS: fix :visible/:hidden selectors for inline element w/ content
Timmy Willison [Fri, 8 May 2015 22:27:54 +0000 (15:27 -0700)]
CSS: fix :visible/:hidden selectors for inline element w/ content

- Reverts behavior from 10399dd, which we never released.
  BR and inline elements are considered visible.
- The possibility of dropping .offsetWidth and .offsetHeight
  was debunked by this perf:
  http://jsperf.com/visible-hidden-and-getclientrects

Fixes gh-2227
Close gh-2281

9 years agoCSS: Collapse a double if statement into one
Michał Gołębiowski [Mon, 11 May 2015 20:25:28 +0000 (22:25 +0200)]
CSS: Collapse a double if statement into one

Saves 3 bytes gzipped

Closes gh-2296

9 years agoCSS: Ignore the CSS cascade in show()/hide()/etc.
Richard Gibson [Thu, 2 Apr 2015 20:57:33 +0000 (16:57 -0400)]
CSS: Ignore the CSS cascade in show()/hide()/etc.

Fixes gh-1767
Fixes gh-2071
Closes gh-2180

9 years agoBuild: use different versions of jsdom for Node and iojs testing 2272/head
Timmy Willison [Wed, 6 May 2015 23:23:00 +0000 (16:23 -0700)]
Build: use different versions of jsdom for Node and iojs testing

Fixes gh-2266

9 years agoManipulation: privatize internal domManip() function
Timmy Willison [Tue, 5 May 2015 18:52:58 +0000 (11:52 -0700)]
Manipulation: privatize internal domManip() function

Fixes gh-2225

9 years agoManipulation: privatize buildFragment() function
Timmy Willison [Tue, 5 May 2015 18:44:55 +0000 (11:44 -0700)]
Manipulation: privatize buildFragment() function

Fixes gh-2224

9 years agoEffects: add tests for jQuery.easing._default in Animation and Tween
Timmy Willison [Tue, 5 May 2015 18:22:40 +0000 (11:22 -0700)]
Effects: add tests for jQuery.easing._default in Animation and Tween

Ref gh-2219

9 years agoEffects: set default easing using jQuery.easing._default
Timmy Willison [Tue, 5 May 2015 17:24:20 +0000 (10:24 -0700)]
Effects: set default easing using jQuery.easing._default

Fixes gh-2219
Close gh-2218

9 years agoCore: remove isArraylike check for nodes
Mu Haibao [Wed, 29 Apr 2015 16:53:30 +0000 (00:53 +0800)]
Core: remove isArraylike check for nodes

Fixes gh-2238
Close gh-2243

9 years agoBuild: Remove npm from dependencies
Calvin Metcalf [Sat, 2 May 2015 13:08:30 +0000 (09:08 -0400)]
Build: Remove npm from dependencies

Close gh-2254

9 years agoOffset: allow offset setter to throw for disconnected elements
Timmy Willison [Tue, 5 May 2015 15:33:50 +0000 (08:33 -0700)]
Offset: allow offset setter to throw for disconnected elements

Fixes gh-2114

9 years agoOffset: remove ownerDocument check in offset getter
Timmy Willison [Tue, 5 May 2015 15:31:39 +0000 (08:31 -0700)]
Offset: remove ownerDocument check in offset getter

Fixes gh-2115

9 years agoOffset: Fix .offset() to correctly work with ShadowDOM
Arthur Stolyar [Tue, 5 May 2015 15:16:29 +0000 (08:16 -0700)]
Offset: Fix .offset() to correctly work with ShadowDOM

Fixes gh-1784
Close gh-2043

9 years agoSelector: add test for jQuery.unique() alias
Timmy Willison [Tue, 5 May 2015 14:59:12 +0000 (07:59 -0700)]
Selector: add test for jQuery.unique() alias

9 years agoSelector: add jQuery.uniqueSort; deprecate jQuery.unique
Timmy Willison [Mon, 4 May 2015 22:27:12 +0000 (15:27 -0700)]
Selector: add jQuery.uniqueSort; deprecate jQuery.unique

Fixes gh-2228

9 years agoCore: allow init to accept an alternate rootjQuery for migrate's sake
Timmy Willison [Mon, 4 May 2015 22:16:28 +0000 (15:16 -0700)]
Core: allow init to accept an alternate rootjQuery for migrate's sake

- This will be tested in migrate

Fixes gh-2101

9 years agoData: camelCasing should not ignore case
Timmy Willison [Mon, 4 May 2015 14:49:21 +0000 (10:49 -0400)]
Data: camelCasing should not ignore case

Fixes gh-2070

9 years agoData: always camelCase keys in .data()
Timmy Willison [Mon, 4 May 2015 13:36:58 +0000 (09:36 -0400)]
Data: always camelCase keys in .data()

- This effectively implements our "Embrace HTML5" option
- Related: http://goo.gl/GcQAtn

Fixes gh-2257

9 years agoData: do not include digits when camelCasing
Timmy Willison [Sun, 3 May 2015 12:22:32 +0000 (08:22 -0400)]
Data: do not include digits when camelCasing

Fixes gh-1751

9 years agoEvent: remove redundant guards for the event methods
Oleg Gaidarenko [Mon, 27 Apr 2015 06:57:46 +0000 (09:57 +0300)]
Event: remove redundant guards for the event methods

Fixes gh-2047
Closes gh-2125

9 years agoCore:CSS:Event: simplification of native method signatures
Oleg Gaidarenko [Mon, 27 Apr 2015 06:49:12 +0000 (09:49 +0300)]
Core:CSS:Event: simplification of native method signatures

* Remove third argument from "addEventListener"

* Remove third argument from "removeEventListener"

* Remove second argument from "getComputedStyle"

Ref gh-2047

9 years agoAjax: remove "onunload" event handler
Oleg Gaidarenko [Thu, 2 Apr 2015 08:55:57 +0000 (11:55 +0300)]
Ajax: remove "onunload" event handler

Remove hack for IE lost connections, update for it was released
by Microsoft at November 12, 2013.
See https://support.microsoft.com/en-us/kb/2905733

Ref trac-5280
Ref gh-2047

9 years agoEvent: add support comment
Oleg Gaidarenko [Sun, 8 Mar 2015 04:11:11 +0000 (07:11 +0300)]
Event: add support comment

Ref gh-2047

9 years agoEvent: remove guard for falsy handler argument of jQuery#on method
Oleg Gaidarenko [Thu, 30 Apr 2015 17:05:18 +0000 (20:05 +0300)]
Event: remove guard for falsy handler argument of jQuery#on method

Since we don't have this in off method and its a common perception
that this is a rudiment code

Ref gh-2248
Closes gh-2249

9 years agoManipulation: Make an HTML interception point
Richard Gibson [Fri, 10 Apr 2015 19:57:18 +0000 (15:57 -0400)]
Manipulation: Make an HTML interception point

Fixes gh-1747
Closes gh-2203

9 years agoManipulation: Detect sneaky no-content replaceWith input
Richard Gibson [Mon, 13 Apr 2015 20:05:48 +0000 (16:05 -0400)]
Manipulation: Detect sneaky no-content replaceWith input

Fixes gh-2204
Ref 642e9a45579cfa90861b8ea71a95dd077775caaf
Closes gh-1752
Closes gh-2206

9 years agoCore: add workaround for iOS JIT error in isArrayLike
Timmy Willison [Sat, 4 Apr 2015 19:34:07 +0000 (15:34 -0400)]
Core: add workaround for iOS JIT error in isArrayLike

Fixes gh-2145

9 years agoCore: Test all factory use cases from intro.js
Michał Gołębiowski [Sun, 26 Apr 2015 17:33:05 +0000 (19:33 +0200)]
Core: Test all factory use cases from intro.js

There is a lot of logic in intro.js; now we test four cases:
1. (implicitly, via QUnit tests) A real browser with window being the global
2. Browserify where there are both global & window variables.
3. Node with jsdom where window is passed manually to the jQuery factory.
4. Pure Node with incorrect window passed; jQuery should throw then.

Previously the second & fourth case was not tested and the third was tested
in a way that interfered with the main test environment.

We now also test if in the Browserify case we're not creating a jQuery global
by default.

Fixes gh-2181
Closes gh-2234

9 years agoTests: Increase QUnit timeout
Michał Gołębiowski [Sun, 26 Apr 2015 15:11:10 +0000 (17:11 +0200)]
Tests: Increase QUnit timeout

Android 2.3 is very slow & times out a lot in async tests, they have to be
restarted multiple times to settle. Long test execution is not a huge problem
as Android 2.3 is tested only periodically during the night, unstable tests
are a bigger problem. This might mitigate that.

In a regular scenario almost all tests should pass so increasing the timeout
for all browsers shouldn't have a huge impact on overall test time.

Closes gh-2232

9 years agoCore: Align branches: remove an unused variable, add comments
Michał Gołębiowski [Sun, 26 Apr 2015 15:22:46 +0000 (17:22 +0200)]
Core: Align branches: remove an unused variable, add comments

Closes gh-2233

9 years agoDeferred: Always handle progress callbacks before done/fail
Richard Gibson [Tue, 14 Apr 2015 17:30:58 +0000 (13:30 -0400)]
Deferred: Always handle progress callbacks before done/fail

Fixes gh-2013
Fixes gh-2010
Closes gh-2210

9 years agoAttributes: remove unnecessary element null check
Bastian Buchholz [Mon, 13 Apr 2015 08:37:42 +0000 (10:37 +0200)]
Attributes: remove unnecessary element null check

Close gh-2201

9 years agoCore: Follow the AMD specification for define
Alexander O'Mara [Mon, 30 Mar 2015 15:52:00 +0000 (11:52 -0400)]
Core: Follow the AMD specification for define

AMD specification requires the factory argument be defined.

Close gh-2179

9 years agoCSS: Don't expose jQuery.swap
Michał Gołębiowski [Mon, 30 Mar 2015 17:19:15 +0000 (19:19 +0200)]
CSS: Don't expose jQuery.swap

jQuery.swap was an undocumented API used only internally. With the modular
AMD system we currently have it's not necessary to expose this function
publicly under the jQuery object.

Fixes gh-2058
Closes gh-2182

9 years agoBuild: update Sizzle
Timmy Willison [Mon, 13 Apr 2015 15:30:18 +0000 (11:30 -0400)]
Build: update Sizzle

Fixes gh-2042
Fixes gh-1969
Closes gh-1709

9 years agoDocs: Add info about Sizzle not being excludable on the compat branch
Michał Gołębiowski [Mon, 30 Mar 2015 20:44:18 +0000 (22:44 +0200)]
Docs: Add info about Sizzle not being excludable on the compat branch

Most people just read the README that's displayed to them on GitHub which
is the one for the master branch. Let's include the info about Sizzle
not being excludable there.

Fixes gh-2184

9 years agoAttributes: revert returning null for non-existant attributes
Timmy Willison [Mon, 30 Mar 2015 19:32:54 +0000 (15:32 -0400)]
Attributes: revert returning null for non-existant attributes

Ref https://github.com/jquery/jquery/issues/2118

9 years agoWrap: Support .unwrap( selector) for selective unwrapping
Dave Methvin [Mon, 12 Jan 2015 03:17:41 +0000 (22:17 -0500)]
Wrap: Support .unwrap( selector) for selective unwrapping

Fixes gh-1744
Closes gh-2003