Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Core: isOverAxis avoid duplicated method logic. | Eduardo Lundgren | 2008-11-21 | 1 | -9/+4 | |
| | ||||||
* | New file: AUTHORS.txt instead of having a single contributor's name in each ↵ | Richard Worth | 2008-11-21 | 1 | -1/+1 | |
| | | | | file header. See http://groups.google.com/group/jquery-ui-dev/browse_thread/thread/ca0b1cc9580141b | |||||
* | core: this fixes the Safari issue that select options can't be selected if ↵ | Paul Bakaus | 2008-11-19 | 1 | -1/+1 | |
| | | | | the mouse widget is used, since the mousedown returns false which calls preventDefault. Returning true causes text to be selectable in FF/Opera though, so this needs to be Safari only for now. | |||||
* | Removed all trailing whitespace from .js and .html files | Richard Worth | 2008-11-18 | 1 | -74/+74 | |
| | ||||||
* | Core: Fixed #3562: Modify .removeAttr() to work on ARIA properties in FF2. | Scott González | 2008-11-15 | 1 | -2/+10 | |
| | ||||||
* | fixed #3578 - ALL CODE: e, ui should be changed to event, ui | Richard Worth | 2008-11-14 | 1 | -44/+44 | |
| | ||||||
* | Core and Sortable: $.ui.contains method moved into the core. This method ↵ | Eduardo Lundgren | 2008-11-12 | 1 | -2/+14 | |
| | | | | could be util for another components. | |||||
* | Core: Change arguments name for isOver* methods. | Eduardo Lundgren | 2008-11-10 | 1 | -6/+6 | |
| | ||||||
* | implemented $.fn.scrollParent (candidate for jQuery core, see ticket #3589 ↵ | Paul Bakaus | 2008-11-10 | 1 | -0/+6 | |
| | | | | in Jquery's trac) | |||||
* | Core: Change comments for the new methods | Eduardo Lundgren | 2008-11-10 | 1 | -3/+3 | |
| | ||||||
* | Change name of intersect methods to isOverHeight/isOverWidth/isOver. | Eduardo Lundgren | 2008-11-10 | 1 | -8/+8 | |
| | ||||||
* | Core: Avoid conflict with droppable $.ui.instersect method. Core changed ↵ | Eduardo Lundgren | 2008-11-10 | 1 | -1/+1 | |
| | | | | name to $.ui.intersects. | |||||
* | Core: Intersect methods into the core. Determines when element "a" ↵ | Eduardo Lundgren | 2008-11-10 | 1 | -0/+15 | |
| | | | | coordinates intersects with element "b". | |||||
* | Core: Optimized isVisible() for the case where the element being checked is ↵ | Scott González | 2008-11-08 | 1 | -1/+1 | |
| | | | | not visible. | |||||
* | Core: Rewrote isVisible(). New implementation inspired by Remy's ↵ | Scott González | 2008-11-07 | 1 | -13/+2 | |
| | | | | :reallyvisible selector. | |||||
* | Core: Moved regex declarations for potential speed increase. | Scott González | 2008-11-07 | 1 | -21/+21 | |
| | ||||||
* | Tweaking attr to normalize for FF2 ARIA implementation. Removed ariaRole and ↵ | David Bolter | 2008-11-05 | 1 | -26/+21 | |
| | | | | ariaState API. (Assist: Scott González, Fixes #3529) | |||||
* | core: restructured helper functions, made enableSelection/disableSelection ↵ | Paul Bakaus | 2008-11-03 | 1 | -130/+146 | |
| | | | | jQuery plugins (fixes 3459) | |||||
* | mouse: events and default actions on click are not fired after a drag action ↵ | Paul Bakaus | 2008-11-03 | 1 | -3/+11 | |
| | | | | has been initiated | |||||
* | core: reverted lazy loading implementation, commited to a future branch | Paul Bakaus | 2008-10-15 | 1 | -27/+0 | |
| | ||||||
* | core: fixed chaining in lazy loading mechanism | Paul Bakaus | 2008-10-15 | 1 | -0/+2 | |
| | ||||||
* | core: implemented experimental async dependency loading | Paul Bakaus | 2008-10-15 | 1 | -0/+25 | |
| | ||||||
* | adding version property to all ui components | Jörn Zaefferer | 2008-10-05 | 1 | -0/+1 | |
| | ||||||
* | $.widget: Create namespace if it doesn't already exist. | Scott González | 2008-09-28 | 1 | -0/+1 | |
| | ||||||
* | Core: Reduced size of ARIA methods. | Scott González | 2008-09-23 | 1 | -18/+21 | |
| | ||||||
* | Core: Moved ARIA methods up with other jQuery core modifications. | Scott González | 2008-09-22 | 1 | -27/+26 | |
| | ||||||
* | Accept boolean values for aria state. (Thanks for catch Scott González) | David Bolter | 2008-09-22 | 1 | -1/+1 | |
| | ||||||
* | Added ariaRole and ariaState to ui.core with tests. | David Bolter | 2008-09-22 | 1 | -0/+27 | |
| | | | | | | Added ARIA role and state to ui.dialog Fixes #3350 (Inspired by jARIA plugin from Chris Hoffman) | |||||
* | Core: Marked $.ui.plugin as deprecated. | Scott González | 2008-09-22 | 1 | -0/+1 | |
| | ||||||
* | Core: Added comment about why we use triggerHandler instead of trigger in ↵ | Scott González | 2008-09-20 | 1 | -1/+2 | |
| | | | | $.fn.remove. | |||||
* | Core: Fixed #3457: Removing elements causes instantiated plugins to be ↵ | Scott González | 2008-09-20 | 1 | -1/+4 | |
| | | | | destroyed again. | |||||
* | whitespace: Removed trailing whitespace from non-blank lines | Richard Worth | 2008-09-20 | 1 | -1/+1 | |
| | ||||||
* | Reverted r695. | Scott González | 2008-09-19 | 1 | -61/+61 | |
| | ||||||
* | Remove Trailing Spaces | Eduardo Lundgren | 2008-09-19 | 1 | -61/+61 | |
| | ||||||
* | core: enableSelection/disableSelection now return the chain (implements #3174) | Paul Bakaus | 2008-09-18 | 1 | -2/+2 | |
| | ||||||
* | core: hasScroll now checks for overflow hidden, since then the users wants ↵ | Paul Bakaus | 2008-09-16 | 1 | -0/+4 | |
| | | | | | | scroll to be hidden draggable: containment respects overflow hidden (fixes #3328) | |||||
* | Widget factory: Prevent calling non-existent methods. | Scott González | 2008-09-07 | 1 | -1/+1 | |
| | ||||||
* | Core: Improved :tabbable selector | Scott González | 2008-09-06 | 1 | -5/+25 | |
| | | | | | | | | - check tabindex >= 0 instead of != -1 - check anchor tags for href - check for hidden input types - check styles (display and visibility; self and ancestors) Added tests for :tabbable selector | |||||
* | Core: Added :tabbable selector to find elements that participate in the ↵ | Scott González | 2008-09-05 | 1 | -4/+23 | |
| | | | | tabbing order. | |||||
* | Core: Converted :data selector to a function. | Scott González | 2008-09-05 | 1 | -1/+3 | |
| | ||||||
* | Widget factory: Fixed #3275: Prevent multiple instantiations of the same ↵ | Scott González | 2008-09-02 | 1 | -5/+8 | |
| | | | | plugin on a single element. | |||||
* | Core: Fixed #3257: Added option method to widget factory. | Scott González | 2008-08-27 | 1 | -4/+31 | |
| | ||||||
* | Core: Fixed reference to jQuery. | Scott González | 2008-08-23 | 1 | -1/+1 | |
| | ||||||
* | Core: Fixed #3233: Added constants for key codes. | Scott González | 2008-08-23 | 1 | -3/+32 | |
| | ||||||
* | internal methods: mouse* | Chi Cheng | 2008-08-17 | 1 | -28/+28 | |
| | ||||||
* | Core: Updated widget factory to use proper names for internal methods. Part ↵ | Scott González | 2008-08-16 | 1 | -9/+9 | |
| | | | | of #3188. | |||||
* | Core: Modified widget factory to prevent access to internal methods through ↵ | Scott González | 2008-08-16 | 1 | -0/+7 | |
| | | | | the API (internal methods are any methods preceded by an underscore). Provides framework for #3188. | |||||
* | Added a namespace to the selectstart event handler in ↵ | Scott González | 2008-08-15 | 1 | -2/+8 | |
| | | | | $.ui.disableSelection() so we don't remove other event handlers in $.ui.disableSelection(). | |||||
* | Core: Moved UI core code below jQuery modification code. | Scott González | 2008-08-15 | 1 | -60/+62 | |
| | ||||||
* | Core: Shortened data selector implementation and moved down to other core ↵ | Scott González | 2008-08-15 | 1 | -5/+3 | |
| | | | | modifications. |