summaryrefslogtreecommitdiffstats
path: root/ui/ui.core.js
Commit message (Collapse)AuthorAgeFilesLines
...
* Tweaking attr to normalize for FF2 ARIA implementation. Removed ariaRole and ↵David Bolter2008-11-051-26/+21
| | | | ariaState API. (Assist: Scott González, Fixes #3529)
* core: restructured helper functions, made enableSelection/disableSelection ↵Paul Bakaus2008-11-031-130/+146
| | | | jQuery plugins (fixes 3459)
* mouse: events and default actions on click are not fired after a drag action ↵Paul Bakaus2008-11-031-3/+11
| | | | has been initiated
* core: reverted lazy loading implementation, commited to a future branchPaul Bakaus2008-10-151-27/+0
|
* core: fixed chaining in lazy loading mechanismPaul Bakaus2008-10-151-0/+2
|
* core: implemented experimental async dependency loadingPaul Bakaus2008-10-151-0/+25
|
* adding version property to all ui componentsJörn Zaefferer2008-10-051-0/+1
|
* $.widget: Create namespace if it doesn't already exist.Scott González2008-09-281-0/+1
|
* Core: Reduced size of ARIA methods.Scott González2008-09-231-18/+21
|
* Core: Moved ARIA methods up with other jQuery core modifications.Scott González2008-09-221-27/+26
|
* Accept boolean values for aria state. (Thanks for catch Scott González)David Bolter2008-09-221-1/+1
|
* Added ariaRole and ariaState to ui.core with tests.David Bolter2008-09-221-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ález2008-09-221-0/+1
|
* Core: Added comment about why we use triggerHandler instead of trigger in ↵Scott González2008-09-201-1/+2
| | | | $.fn.remove.
* Core: Fixed #3457: Removing elements causes instantiated plugins to be ↵Scott González2008-09-201-1/+4
| | | | destroyed again.
* whitespace: Removed trailing whitespace from non-blank linesRichard Worth2008-09-201-1/+1
|
* Reverted r695.Scott González2008-09-191-61/+61
|
* Remove Trailing SpacesEduardo Lundgren2008-09-191-61/+61
|
* core: enableSelection/disableSelection now return the chain (implements #3174)Paul Bakaus2008-09-181-2/+2
|
* core: hasScroll now checks for overflow hidden, since then the users wants ↵Paul Bakaus2008-09-161-0/+4
| | | | | | scroll to be hidden draggable: containment respects overflow hidden (fixes #3328)
* Widget factory: Prevent calling non-existent methods.Scott González2008-09-071-1/+1
|
* Core: Improved :tabbable selectorScott González2008-09-061-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ález2008-09-051-4/+23
| | | | tabbing order.
* Core: Converted :data selector to a function.Scott González2008-09-051-1/+3
|
* Widget factory: Fixed #3275: Prevent multiple instantiations of the same ↵Scott González2008-09-021-5/+8
| | | | plugin on a single element.
* Core: Fixed #3257: Added option method to widget factory.Scott González2008-08-271-4/+31
|
* Core: Fixed reference to jQuery.Scott González2008-08-231-1/+1
|
* Core: Fixed #3233: Added constants for key codes.Scott González2008-08-231-3/+32
|
* internal methods: mouse*Chi Cheng2008-08-171-28/+28
|
* Core: Updated widget factory to use proper names for internal methods. Part ↵Scott González2008-08-161-9/+9
| | | | of #3188.
* Core: Modified widget factory to prevent access to internal methods through ↵Scott González2008-08-161-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ález2008-08-151-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ález2008-08-151-60/+62
|
* Core: Shortened data selector implementation and moved down to other core ↵Scott González2008-08-151-5/+3
| | | | modifications.
* Implemented #3187: Added metadata support to the widget factory.Scott González2008-08-151-1/+7
|
* enableSelection/disableSelection fixed for ieEduardo Lundgren2008-08-081-2/+2
|
* core: added :data selector that matches elements that have data for a given key.Paul Bakaus2008-07-141-0/+5
| | | | droppable: removed the addition of "ui-droppable" class which greatly improves intialization time for IE6/7 and FF2
* Core: cleaned up $.ui.hasScroll().Scott González2008-07-111-3/+11
|
* core: trigger() needs to be able to return a value from triggerHandlerPaul Bakaus2008-07-101-1/+1
|
* Widget factory: Added trigger method for triggering callbacks and events.Scott González2008-07-101-0/+8
|
* core: use triggerHandler instead of trigger to fire "remove" event - Safari ↵Paul Bakaus2008-07-031-1/+1
| | | | seems to have a native remove event which actually removes DOM elements - very dangerous! (fixes #3037)
* Fixed #3059 - cannot select text in dialog contentRichard Worth2008-07-031-1/+1
|
* Avoid IE memory leak on enableSelection, disableSelection methods.Eduardo Lundgren2008-06-271-8/+4
|
* css method - change class id name for generated divEduardo Lundgren2008-06-261-1/+1
|
* core: Added $.widget.defaults.Scott González2008-06-111-3/+9
|
* Removed old rev ids from jQuery svnRichard Worth2008-06-091-1/+0
|
* ui-core: added mouseCapture, replacing the condition feature before. Allows ↵Paul Bakaus2008-06-091-2/+3
| | | | text to be selected in sortables on non-handles.
* whitespace only - newline at EOFRichard Worth2008-06-091-1/+1
|
* core: cancel checks for type string before it's usedPaul Bakaus2008-06-081-1/+1
| | | | draggable-test: changed cancel: true test: this should cancel on all elements, but simply do nothing, since true is a unsupported value.
* core: fixed propagation issue that didn't allow resizables and sortables to ↵Paul Bakaus2008-06-081-1/+1
| | | | work together, because the event didn't bubble out.