aboutsummaryrefslogtreecommitdiffstats
path: root/ui/ui.core.js
Commit message (Collapse)AuthorAgeFilesLines
* Mouse: Fixed #4146: Don't set the flag to prevent click events if mouseup ↵Scott González2009-02-141-1/+1
| | | | occurs on a diferent element than mousedown (was preventing the next click event from occuring).
* Mouse: Stop immediate propagation of click events. Partial fix for #3177 - ↵Scott González2009-02-141-0/+1
| | | | click is fired for draggagble elements on mouseUp.
* Prevent loading core files multiple times. Fixes #4130 - Too much recurson ↵Scott González2009-02-131-1/+1
| | | | with double include.
* core: prevent calling plugins if the node doesn't exist in DOM anymore (has ↵Paul Bakaus2009-02-101-1/+1
| | | | been removed by the user) (fixes #4087)
* Removed unused code obsoleted by #3906 and r1754Richard Worth2009-02-081-18/+0
|
* Mouse: Fixed #4061: Prevent errors when manually triggering mousedown events ↵Scott González2009-02-051-0/+2
| | | | on elements that use $.ui.mouse (event.originalEvent isn't defined).
* core: check for event.originalEvent before copyingRichard Worth2009-01-281-3/+5
|
* $.widget: Fixed #3965: Copy properties from original event on to new event ↵Scott González2009-01-281-0/+8
| | | | in _trigger.
* Mouse: Fixed #3552, reverted r1763: Let mouse events propagate.Scott González2009-01-281-5/+4
|
* core: the propagation for the mousedown has to be stopped in the mouse ↵Paul Bakaus2009-01-231-0/+5
| | | | logic, otherwise causes much pain for nested widgets (fixes #3910)
* whitespaceRichard Worth2009-01-221-1/+1
|
* Core: Partial fix for #3559: Proper implementation for :focusable and ↵Scott González2009-01-211-23/+15
| | | | :tabbable selectors.
* $.widget: Fixed #3633: Moved call to _init outside of constructor. This ↵Scott González2009-01-191-3/+1
| | | | makes it possible to invoke callbacks during initialization and have those callbacks use the widget.
* Fixed #3841 - check for $.isFunction before triggerEduardo Lundgren2009-01-161-1/+1
|
* Widget factory: Fixed event triggering (again).Scott González2009-01-151-11/+4
| | | | Draggable: To modify the position during drag, you now set ui.position instead of returning new coords.
* core: fixed _trigger not modifing the original event with event.resultPaul Bakaus2009-01-091-1/+1
| | | | sortable: use event.result to listen for a return false
* Widget factory: _trigger will now set event.result if the callback returns a ↵Scott González2009-01-091-4/+11
| | | | value. The created event is now always run through $.Event to reset isDefaultPrevent(), isPropagationStopped(), isImmediatePropagationStopped().
* ui.core.js: corrected invalid (x)htmlRichard Worth2009-01-031-1/+1
|
* Happy New YearRichard Worth2009-01-031-1/+1
|
* Core: Cleaned up warnings.Scott González2009-01-031-1/+2
|
* Core: Changed $.ui.contains to use the same logic as jQuery's internal ↵Scott González2009-01-031-9/+3
| | | | contains function.
* Widget factory: Updated ._trigger to use new event system in jQuery 1.3.Scott González2009-01-031-4/+11
|
* Reverted r1461Richard Worth2009-01-021-4/+1
|
* Widget Factory: Fixed #3720: Removed use of extra function in jQuery.trigger.Scott González2009-01-011-1/+4
|
* Core: Cleaned up whitespace.Scott González2009-01-011-11/+0
|
* Core: Changed parameter names for selectors.Scott González2009-01-011-8/+8
|
* Core: Whitespace only.Scott González2008-12-311-2/+4
|
* Widget Factory: Check the target in getData and setData events (jQuery 1.3 ↵Scott González2008-12-311-2/+6
| | | | supports bubbling for custom events).
* Core: Fixed data selector so it returns true/false (makes it work with Sizzle).Scott González2008-12-311-1/+1
|
* Fixed #3655 - $.keyCode should be $.ui.keyCodeRichard Worth2008-12-141-31/+30
|
* Removed names from ui.core.js as all contribution credit is given in ↵Richard Worth2008-12-101-1/+0
| | | | AUTHORS.txt and http://ui.jquery.com/about
* Removed UTF-8 BOM again. Turns out it was added by Notepad.Richard Worth2008-12-101-2/+2
|
* core widget: added ui-state-disabled and aria-disabled to widget plugin's ↵Richard Worth2008-12-101-3/+7
| | | | disable/enable/destroy
* Source formattingEduardo Lundgren2008-11-281-4/+4
|
* core (mouse): preventDefault in most cases instead of returning false, that ↵Paul Bakaus2008-11-231-2/+6
| | | | blocks all bubbling events (fixed #3552)
* core: improved logic of $.fn.scrollParent, taking positioning in accountPaul Bakaus2008-11-231-3/+15
| | | | draggable: fixed and updated tests, rewrote positioning core, now passes the test suite completely in FF, IE6, IE7
* Core: isOverAxis avoid duplicated method logic.Eduardo Lundgren2008-11-211-9/+4
|
* New file: AUTHORS.txt instead of having a single contributor's name in each ↵Richard Worth2008-11-211-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 Bakaus2008-11-191-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 filesRichard Worth2008-11-181-74/+74
|
* Core: Fixed #3562: Modify .removeAttr() to work on ARIA properties in FF2.Scott González2008-11-151-2/+10
|
* fixed #3578 - ALL CODE: e, ui should be changed to event, uiRichard Worth2008-11-141-44/+44
|
* Core and Sortable: $.ui.contains method moved into the core. This method ↵Eduardo Lundgren2008-11-121-2/+14
| | | | could be util for another components.
* Core: Change arguments name for isOver* methods.Eduardo Lundgren2008-11-101-6/+6
|
* implemented $.fn.scrollParent (candidate for jQuery core, see ticket #3589 ↵Paul Bakaus2008-11-101-0/+6
| | | | in Jquery's trac)
* Core: Change comments for the new methodsEduardo Lundgren2008-11-101-3/+3
|
* Change name of intersect methods to isOverHeight/isOverWidth/isOver.Eduardo Lundgren2008-11-101-8/+8
|
* Core: Avoid conflict with droppable $.ui.instersect method. Core changed ↵Eduardo Lundgren2008-11-101-1/+1
| | | | name to $.ui.intersects.
* Core: Intersect methods into the core. Determines when element "a" ↵Eduardo Lundgren2008-11-101-0/+15
| | | | coordinates intersects with element "b".
* Core: Optimized isVisible() for the case where the element being checked is ↵Scott González2008-11-081-1/+1
| | | | not visible.