aboutsummaryrefslogtreecommitdiffstats
path: root/src/attributes
Commit message (Collapse)AuthorAgeFilesLines
* Attributes: strip/collapse whitespace for set values on selectsTimmy Willison2016-03-171-5/+12
| | | | | Fixes gh-2978 Close gh-3002
* Attributes: remove redundant parent checkTimmy Willison2016-03-071-1/+1
|
* Attributes: fix setting selected on an option in IE<=11Timmy Willison2016-03-071-0/+16
| | | | | Fixes gh-2732 Close gh-2840
* Revert "Attributes: Remove undocumented .toggleClass( boolean ) signature"Timmy Willison2016-01-071-17/+52
| | | | This reverts commit 53f798cf4d783bb813b4d1ba97411bc752b275f3.
* Revert "Ajax:Attributes:CSS:Manipulation: Reduce Android 2.3 support"Michał Gołębiowski2015-11-162-1/+7
| | | | This reverts commit ce3b4a62427c5a3a6669dcb8bf8e27a6287990d5.
* Revert "Misc: Drop support for older browsers; update support comments"Michał Gołębiowski2015-11-161-1/+1
| | | | This reverts commit 740e190223d19a114d5373758127285d14d6b71e.
* Revert "Attributes: do not set properties to false when removing booleans"Oleg Gaidarenko2015-11-111-2/+10
| | | | This reverts commit 47ccf3daadc4b312f850502300129952e70f9d9d.
* Revert "Attributes: return empty array for select-multiple with no values"Oleg Gaidarenko2015-11-111-1/+1
| | | | This reverts commit 79fc806e8500372a2278795c068d039ee287535f.
* Attributes: return empty array for select-multiple with no valuesTimmy Willison2015-11-051-1/+1
| | | | | Fixes gh-2562 Close gh-2689
* Attributes: do not set properties to false when removing booleansTimmy Willison2015-10-211-10/+2
| | | | Fixes gh-1759
* Attributes: fix tabIndex on <img> in IE11Joelle Fleurantin2015-10-181-5/+15
| | | | | Fixes gh-2647 Closes gh-2664
* Attributes: removeClass() -> attr("class", "")Thomas Tortorini2015-10-181-23/+21
| | | | | | - Classes simpliciation Close gh-2465
* Attributes: Use simpler boolean check vs a function callDave Methvin2015-10-181-5/+2
| | | | Ref gh-2491
* Attributes: Remove undocumented .toggleClass( boolean ) signatureDave Methvin2015-10-181-54/+22
| | | | | Fixes gh-2491 Close gh-2618
* Ajax:Attributes:CSS:Manipulation: Reduce Android 2.3 supportMichał Gołębiowski2015-09-142-7/+1
| | | | | | | | Drop non-critical workarounds for Android 2.3. Fixes gh-2483 Fixes gh-2505 Closes gh-2581
* Build: Update jscs and lint filesOleg Gaidarenko2015-09-075-61/+73
| | | | Fixes gh-2056
* Core: organize prop & attr code to be similarGilad Peleg2015-06-232-54/+56
| | | | Closes gh-2384
* Attributes: add SVG class manipulationTimmy Willison2015-05-121-29/+43
| | | | | | | | | - 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
* Core: Align branches: remove an unused variable, add commentsMichał Gołębiowski2015-04-271-2/+2
| | | | Closes gh-2233
* Attributes: remove unnecessary element null checkBastian Buchholz2015-04-201-1/+1
| | | | Close gh-2201
* Attributes: revert returning null for non-existant attributesTimmy Willison2015-03-301-1/+6
| | | | Ref https://github.com/jquery/jquery/issues/2118
* Attributes: revert returning null for non-elementsTimmy Willison2015-03-161-1/+1
|
* Attributes: fix failing test for new return valueTimmy Willison2015-03-161-1/+1
|
* Attributes: return null when attribute does not existWinston Howes2015-03-161-6/+1
| | | | | Fixes gh-2118 Close gh-2129
* Core: Standardize indexOf comparisonsRichard Gibson2015-01-102-4/+4
| | | | | | | | not present: `< 0` present: `> -1` at index: `=== N` Closes gh-1984
* Build: Don't assume the browser environment; smoke test on Node w/ jsdomMichał Gołębiowski2014-12-261-1/+2
| | | | | Fixes gh-1950 Closes gh-1949
* Attributes: Use the option val hook in select val hook and simplify itMichał Gołębiowski2014-12-081-7/+5
| | | | | | | | | The hook is still defined; not using it could cause issues in IE<11. Also, IE10 no longer throws when value not set but it still doesn't trim the value. IE11 has all those issues fixed; support comments are updated. Fixes gh-1902 Closes gh-1901
* Misc: Adjust comments & docs to dropping IE<8 in jQuery CompatMichał Gołębiowski2014-11-041-1/+1
|
* Misc: Drop support for older browsers; update support commentsMichał Gołębiowski2014-11-031-1/+1
| | | | | | | | That includes Opera 12.x, Firefox<29, Safari<6.0 and some hacks for old Blackberry. Closes gh-1820 Refs gh-1815
* Attr: Use typeof check for getAttribute methodOleg Gaidarenko2014-09-021-1/+1
| | | | Ref 29838b6cab6f2e508f3e9692f32918c72b1a504b
* Core: Drop strundefined variableChris Antaki2014-09-022-6/+4
|
* Build: update grunt-jscs-checker and pass with the new rulesTimmy Willison2014-07-174-13/+25
|
* Support: clean up comments and Support notationDave Methvin2014-06-105-22/+16
| | | | Closes gh-1577
* Attributes: Trim whitespace from option text when returned as a valueJohn Hoven2014-03-201-0/+10
| | | | | | | | | | Fixes #14858 Ref #14686 Closes gh-1531 (cherry picked from commit 9ec429cf6270e455aba4eba85f4db80e633806b6) Conflicts: src/attributes/val.js
* Attrs: Simplify an option hookOleg2014-02-051-1/+1
| | | | | | | Since getter was removed in fdd78fad19ea3390cd96971cd29430e36378d137 there is no longer a need to wrap option element in order to get its value Fixes #14756
* Attrs: Remove outdated valHook for option elementOleg2014-01-161-8/+0
| | | | | | | This hook was relevant for BlackBerry 4.7 which is no longer supported. But this code path now raises error in IE10-11 (#14686) in 1.x-master branch. So to just to be safe, also add test for IE issue to this branch too.
* Reduce size by reordering variable declarationsChris Antaki2013-12-161-4/+4
| | | | Close gh-1421
* No ticket: fix code style inconsistencies. Closes gh-1361Oleg2013-09-132-2/+4
|
* Flip the switch on checkOnTimmy Willison2013-09-111-1/+1
|
* Separate jQuery.fn.init into its own module (for lighter core dependencies ↵Timmy Willison2013-09-092-2/+4
| | | | across all modules)
* Break jQuery.access out into its own module to separate it from core; Adjust ↵Timmy Willison2013-09-092-4/+6
| | | | CommonJS+AMD build support to include non-var dependencies. Convert modules with more than a few dependencies to use CJS+AMD syntax.
* No ticket. Update support comments to reflect current state of affairs.Michał Gołębiowski2013-09-071-1/+1
|
* Fix #10814. Make support tests lazy and broken out to components.Michał Gołębiowski2013-09-064-11/+47
|
* Fix for custom attr handles duck-punching the boolean attr handleTimmy Willison2013-08-281-18/+15
| | | | | Conflicts: src/attributes/attr.js
* Fix #14164: assign className in addClass/removeClass only if changed. Close ↵Jeremy Dunck2013-08-191-4/+13
| | | | gh-1331.
* Specify support as a dependency wherever it is used. Optimize module order ↵Timmy Willison2013-08-153-3/+6
| | | | to save 15 bytes.
* AMD-ify jQuery sourcegit s! Woo! Fixes #14113, #14163.Timmy Willison2013-08-154-0/+542