r1854 - trunk/ui
Author: paul.bakaus Date: Thu Jan 29 06:08:33 2009 New Revision: 1854 Modified: trunk/ui/ui.dialog.js Log: dialog: all triggered custom events should have related events attached if possible (fixes #3718,#3983) Modified: trunk/ui/ui.dialog.js ============================================================================== --- trunk/ui/ui.dialog.js (original) +++ trunk/ui/ui.dialog.js Thu Jan 29 06:08:33 2009 @@ -55,16 +55,16 @@ }) // setting tabIndex makes the
r1851 - trunk/ui
Author: paul.bakaus Date: Thu Jan 29 04:35:38 2009 New Revision: 1851 Modified: trunk/ui/ui.draggable.js trunk/ui/ui.droppable.js trunk/ui/ui.sortable.js Log: draggable,droppable,sortable: deprecated ui.absolutePosition, changed to ui.offset (fixes #3978,#3977,#3976) Modified: trunk/ui/ui.draggable.js ============================================================================== --- trunk/ui/ui.draggable.js (original) +++ trunk/ui/ui.draggable.js Thu Jan 29 04:35:38 2009 @@ -387,7 +387,8 @@
Datepicker bug
Hello all! I've been using the jquery datepicker in 1.6rc5 and i'm having problems with it. When I pop up a datepicker, it is way off in its position. I did some tests and I found this line in the datepicker code: <code> /* Find an object's position on the screen. */ _findPos: function(obj) { while (obj && (obj.type == 'hidden' || obj.nodeType != 1)) { obj = obj.nextSibling; } var position = $(obj).offset(); return [position.left, position.top]; }, </code> I think this line: <code> var position =
r1842 - trunk/ui
Author: paul.bakaus Date: Wed Jan 28 14:51:35 2009 New Revision: 1842 Modified: trunk/ui/ui.slider.js Log: slider: added better description for workaround for #3726 Modified: trunk/ui/ui.slider.js ============================================================================== --- trunk/ui/ui.slider.js (original) +++ trunk/ui/ui.slider.js Wed Jan 28 14:51:35 2009 @@ -218,7 +218,6 @@ normValue = this._normValueFromMouse(position); this._slide(event, index, normValue); - return
r1846 - trunk/demos/dialog
Author: scott.gonzalez Date: Wed Jan 28 22:06:41 2009 New Revision: 1846 Added: trunk/demos/dialog/modal-form2.html Log: Dialog Demo: Beginning of new modal form demo. Added: trunk/demos/dialog/modal-form2.html ============================================================================== --- (empty file) +++ trunk/demos/dialog/modal-form2.html Wed Jan 28 22:06:41 2009 @@ -0,0 +1,113 @@ +<!doctype html> +<html lang="en"> +<head> + <title>jQuery UI Dialog - Modal form</title> + <link type="text/css"
r1845 - trunk/ui
Author: scott.gonzalez Date: Wed Jan 28 20:12:35 2009 New Revision: 1845 Modified: trunk/ui/ui.dialog.js Log: Dialog: Fixed #3901, #3918, #3930: Don't let the minHeight for dialogs be negative (breaks IE). Modified: trunk/ui/ui.dialog.js ============================================================================== --- trunk/ui/ui.dialog.js (original) +++ trunk/ui/ui.dialog.js Wed Jan 28 20:12:35 2009 @@ -472,7 +472,7 @@ this.element .css({ - minHeight: options.minHeight
r1836 - trunk/ui
Author: paul.bakaus Date: Wed Jan 28 11:10:37 2009 New Revision: 1836 Modified: trunk/ui/ui.slider.js Log: slider: - when dragging a handle, the position of the relative click is respected (fixes #3972) - when dragging two range handles to 0, the slider was broken because the nearest handle would always be the first. Implemented a workaround. (fixes #3736) Modified: trunk/ui/ui.slider.js ============================================================================== --- trunk/ui/ui.slider.js (original)
r1838 - trunk/ui
Author: eduardolundgren Date: Wed Jan 28 13:48:51 2009 New Revision: 1838 Modified: trunk/ui/ui.resizable.js Log: Fixed #3954 Modified: trunk/ui/ui.resizable.js ============================================================================== --- trunk/ui/ui.resizable.js (original) +++ trunk/ui/ui.resizable.js Wed Jan 28 13:48:51 2009 @@ -214,8 +214,7 @@ _mouseStart: function(event) { - var o = this.options, iniPos = this.element.position(), el = this.element, - num = function(v)
r1844 - trunk/ui
Author: paul.bakaus Date: Wed Jan 28 15:11:15 2009 New Revision: 1844 Modified: trunk/ui/ui.slider.js Log: slider: added better description for workaround for #3726 Modified: trunk/ui/ui.slider.js ============================================================================== --- trunk/ui/ui.slider.js (original) +++ trunk/ui/ui.slider.js Wed Jan 28 15:11:15 2009 @@ -198,7 +198,8 @@ } }); - //workaround for bug #3736 + // workaround for bug #3736 (if
r1843 - trunk/tests/unit/slider
Author: rdworth Date: Wed Jan 28 15:03:16 2009 New Revision: 1843 Modified: trunk/tests/unit/slider/slider.js Log: slider unit tests: updated default value for orientation option (now 'auto' instead of 'horizontal') Modified: trunk/tests/unit/slider/slider.js ============================================================================== --- trunk/tests/unit/slider/slider.js (original) +++ trunk/tests/unit/slider/slider.js Wed Jan 28 15:03:16 2009 @@ -9,7 +9,7 @@ var defaults = { max: 100,
r1809 - trunk/ui
Author: paul.bakaus Date: Tue Jan 27 06:38:57 2009 New Revision: 1809 Modified: trunk/ui/ui.accordion.js Log: accordion: overflow is set to hidden during calculations for fillSpace in IE6 (fixes #3845) Modified: trunk/ui/ui.accordion.js ============================================================================== --- trunk/ui/ui.accordion.js (original) +++ trunk/ui/ui.accordion.js Tue Jan 27 06:38:57 2009 @@ -158,8 +158,11 @@ var o = this.options, maxHeight; if (o.fillSpace)
r1841 - trunk/ui
Author: paul.bakaus Date: Wed Jan 28 14:13:44 2009 New Revision: 1841 Modified: trunk/ui/ui.slider.js Log: slider: animate default should be false Modified: trunk/ui/ui.slider.js ============================================================================== --- trunk/ui/ui.slider.js (original) +++ trunk/ui/ui.slider.js Wed Jan 28 14:13:44 2009 @@ -354,6 +354,8 @@ values: function(index, newValue, noAnimation) { + if(!this.options.animate) noAnimation = true; + if (arguments.length
r1840 - trunk/ui
Author: paul.bakaus Date: Wed Jan 28 14:11:33 2009 New Revision: 1840 Modified: trunk/ui/ui.slider.js Log: slider: animate default should be false Modified: trunk/ui/ui.slider.js ============================================================================== --- trunk/ui/ui.slider.js (original) +++ trunk/ui/ui.slider.js Wed Jan 28 14:11:33 2009 @@ -473,7 +473,7 @@ version: "@VERSION", eventPrefix: "slide", defaults: { - animate: 1000, + animate: false, delay:
r1839 - trunk/ui
Author: paul.bakaus Date: Wed Jan 28 14:07:46 2009 New Revision: 1839 Modified: trunk/ui/ui.slider.js Log: slider: - implemented animate method - slider min/max values could be exceeded using the keyboard (fixes #3737) Modified: trunk/ui/ui.slider.js ============================================================================== --- trunk/ui/ui.slider.js (original) +++ trunk/ui/ui.slider.js Wed Jan 28 14:07:46 2009 @@ -123,10 +123,12 @@ break; case $.ui.keyCode.UP:
r1825 - trunk/demos/tabs
Author: rdworth Date: Wed Jan 28 03:48:58 2009 New Revision: 1825 Added: trunk/demos/tabs/sortable.html Modified: trunk/demos/tabs/index.html Log: demos tabs: added sortable tabs demo Modified: trunk/demos/tabs/index.html ============================================================================== --- trunk/demos/tabs/index.html (original) +++ trunk/demos/tabs/index.html Wed Jan 28 03:48:58 2009 @@ -13,6 +13,7 @@ <li><a href="ajax.html">Content via Ajax</a></li> <li><a href="mouseover.html">Open
r1837 - trunk/ui
Author: paul.bakaus Date: Wed Jan 28 11:14:38 2009 New Revision: 1837 Modified: trunk/ui/ui.slider.js Log: slider: closestHandle never got set when the distance between the handles are the maximum available (fixes #3948) Modified: trunk/ui/ui.slider.js ============================================================================== --- trunk/ui/ui.slider.js (original) +++ trunk/ui/ui.slider.js Wed Jan 28 11:14:38 2009 @@ -185,7 +185,7 @@ var position = { x: event.pageX, y: event.pageY
r1835 - trunk/tests/static/accordion
Author: scottjehl Date: Wed Jan 28 10:01:34 2009 New Revision: 1835 Added: trunk/tests/static/accordion/default _nowrappers.html (contents, props changed) Log: new static page for accordion with no wrapper divs (due to new animation update) the css in this file can replace accordion.css in themes/base once this is implemented and all css references to the content-wrap can be removed. Added: trunk/tests/static/accordion/default _nowrappers.html ==============================================================================
Server changes
Hey everyone, this morning, I've introduced a couple of changes to our server and domain structure that will help us with the traffic. The details: - <a href="http://ui.jquery.com">ui.jquery.com</a> + <a href="http://jqueryui.com">jqueryui.com</a> now point to a entirely new server only used for the production website - <a href="http://jqueryui.pbwiki.com">jqueryui.pbwiki.com</a> has been replaced by <a href="http://wiki.jqueryui.com">wiki.jqueryui.com</a> - <a href="http://ui.jquery.com/bugs">ui.jquery.com/bugs</a>
r1824 - in trunk/demos: . accordion datepicker dialog draggable droppable resizable selectable sl...
Author: rdworth Date: Wed Jan 28 02:49:44 2009 New Revision: 1824 Modified: trunk/demos/accordion/collapsible.html trunk/demos/accordion/custom-icons.html trunk/demos/accordion/fillspace.html trunk/demos/accordion/mouseover.html trunk/demos/datepicker/alt-field.html trunk/demos/datepicker/buttonbar.html trunk/demos/datepicker/dropdown-month-year.html trunk/demos/datepicker/min-max.html trunk/demos/datepicker/multiple-calendars.html trunk/demos/demos.css trunk/demos/dialog/modal-confirmation.html
r1833 - in trunk: tests/static/datepicker themes/base
Author: fg.maggie Date: Wed Jan 28 08:20:19 2009 New Revision: 1833 Modified: trunk/tests/static/datepicker/datepicker.html trunk/themes/base/ui.datepicker.css Log: added row break class to datepicker with multiple calendars. we can delete this later if needed; just want to make sure a fix is in place before the next release. Modified: trunk/tests/static/datepicker/datepicker.html ============================================================================== --- trunk/tests/static/datepicker/datepicker.html (original)
r1834 - trunk/demos/effect_types
Author: fg.todd Date: Wed Jan 28 08:24:36 2009 New Revision: 1834 Added: trunk/demos/effect_types/all_effects.html Log: New "All effects" page modeled after the visual tests. Changed so script is in the head and framework classes are used. I kept the other all effect page (default.html) in this folder too in case we decide thsi is a better option. Needs props fixed. Added: trunk/demos/effect_types/all_effects.html ============================================================================== ---
Effect demos
I've created a /demos/effect_types/ folder in SVN that contains an index page that lists all the effect types alphabetically (need props fixed): http://jquery-ui.googlecode.com/svn/trunk/demos/effect_types/ This matches the the new effects site nav structure with a Methods and Types top level organization: http://ui-dev.jquery.com/demos/ The 3 older folders we had earlier that broke these into show/hide, movement, feedback effects into separate folders can be deleted from / demos/ by someone on the
r1830 - trunk/demos
Author: rdworth Date: Wed Jan 28 05:19:32 2009 New Revision: 1830 Modified: trunk/demos/index.html Log: demos index: added bgiframe for modal demos Modified: trunk/demos/index.html ============================================================================== --- trunk/demos/index.html (original) +++ trunk/demos/index.html Wed Jan 28 05:19:32 2009 @@ -6,6 +6,7 @@ <link type="text/css" href="../themes/base/ui.all.css" rel="stylesheet" /> <link type="text/css" href="demos.css" rel="stylesheet"
r1831 - trunk/tests/visual/slider
Author: rdworth Date: Wed Jan 28 05:58:55 2009 New Revision: 1831 Added: trunk/tests/visual/slider/slider_in_container_with_scrollbars.html Log: test visual slider: new test - Slider in container with scrollbars Added: trunk/tests/visual/slider/slider_in_container_with_scrollbars.html ============================================================================== --- (empty file) +++ trunk/tests/visual/slider/slider_in_container_with_scrollbars.html Wed Jan 28 05:58:55 2009 @@ -0,0 +1,40 @@ +<!doctype
r1829 - trunk/tests/static
Author: rdworth Date: Wed Jan 28 05:16:15 2009 New Revision: 1829 Modified: trunk/tests/static/icons.html Log: tests static icons: fixed icon test page in IE6 Modified: trunk/tests/static/icons.html ============================================================================== --- trunk/tests/static/icons.html (original) +++ trunk/tests/static/icons.html Wed Jan 28 05:16:15 2009 @@ -13,10 +13,8 @@ h2 a {font-size: .8em;} p {font-size: 1.2em; } ul {margin: 0; padding:
r1832 - trunk/tests/visual/slider
Author: rdworth Date: Wed Jan 28 06:04:58 2009 New Revision: 1832 Modified: trunk/tests/visual/slider/slider_in_container_with_scrollbars.html (contents, props changed) Log: eol-style and mime-type Modified: trunk/tests/visual/slider/slider_in_container_with_scrollbars.html ============================================================================== --- trunk/tests/visual/slider/slider_in_container_with_scrollbars.html (original) +++ trunk/tests/visual/slider/slider_in_container_with_scrollbars.html Wed
r1827 - trunk/themes/base/images
Author: rdworth Date: Wed Jan 28 04:59:46 2009 New Revision: 1827 Modified: trunk/themes/base/images/ui-icons_222222_256x240.png trunk/themes/base/images/ui-icons_2e83ff_256x240.png trunk/themes/base/images/ui-icons_454545_256x240.png trunk/themes/base/images/ui-icons_888888_256x240.png trunk/themes/base/images/ui-icons_cd0a0a_256x240.png Log: themes base: updated sprite icon pngs to PNG8 for IE6 Modified: trunk/themes/base/images/ui-icons_222222_256x240.png ==============================================================================
r1828 - in trunk: tests/static themes/base
Author: rdworth Date: Wed Jan 28 05:02:56 2009 New Revision: 1828 Modified: trunk/tests/static/icons.html trunk/themes/base/ui.theme.css Log: Added missing icon: .ui-icon-script Modified: trunk/tests/static/icons.html ============================================================================== --- trunk/tests/static/icons.html (original) +++ trunk/tests/static/icons.html Wed Jan 28 05:02:56 2009 @@ -16,17 +16,25 @@ li {margin: 2px; position: relative; padding: 4px 0; cursor: pointer;
r1826 - in trunk: demos/effect_types demos/tabs tests tests/static tests/visual/datepicker
Author: rdworth Date: Wed Jan 28 03:53:09 2009 New Revision: 1826 Modified: trunk/demos/effect_types/blind.html (props changed) trunk/demos/effect_types/bounce.html (props changed) trunk/demos/effect_types/clip.html (props changed) trunk/demos/effect_types/default.html (props changed) trunk/demos/effect_types/drop.html (props changed) trunk/demos/effect_types/explode.html (props changed) trunk/demos/effect_types/fold.html (props changed) trunk/demos/effect_types/highlight.html (props changed) trunk/demos/effect_types/index.html
r1821 - trunk/demos/effect_types
Author: joern.zaefferer Date: Wed Jan 28 00:26:52 2009 New Revision: 1821 Modified: trunk/demos/effect_types/blind.html (props changed) trunk/demos/effect_types/bounce.html (props changed) trunk/demos/effect_types/clip.html (props changed) trunk/demos/effect_types/default.html (props changed) trunk/demos/effect_types/drop.html (props changed) trunk/demos/effect_types/explode.html (props changed) trunk/demos/effect_types/fold.html (props changed) trunk/demos/effect_types/highlight.html (props changed)
r1822 - trunk/demos/effect_types
Author: joern.zaefferer Date: Wed Jan 28 00:31:38 2009 New Revision: 1822 Modified: trunk/demos/effect_types/default.html Log: effect_types description: added note that effects can be toggled Modified: trunk/demos/effect_types/default.html ============================================================================== --- trunk/demos/effect_types/default.html (original) +++ trunk/demos/effect_types/default.html Wed Jan 28 00:31:38 2009 @@ -191,7 +191,7 @@ <div class="demo-description"> - Click
r1823 - trunk/ui
Author: rdworth Date: Wed Jan 28 01:15:51 2009 New Revision: 1823 Modified: trunk/ui/ui.core.js Log: core: check for event.originalEvent before copying Modified: trunk/ui/ui.core.js ============================================================================== --- trunk/ui/ui.core.js (original) +++ trunk/ui/ui.core.js Wed Jan 28 01:15:51 2009 @@ -366,9 +366,11 @@ // copy original event properties over to the new event // this would happen if we could call $.event.fix instead
datepicker position
Hi guys, I think the function _checkOffset is failing, in all browsers. Whenever open a datepicker when my browser window is scrolled down and/ or right, it draws the datepicker too high and/or left, often I have to scroll to find it. I checked this with svn checkout and it still fails, even with the packaged demo. Opened a ticked for this yesterday (#3863). Anybody not have this problem, or aware of it already? thanks, Jez.
r1820 - in trunk: tests/visual/datepicker ui
Author: pazu2k@gmail.com Date: Tue Jan 27 21:11:10 2009 New Revision: 1820 Added: trunk/tests/visual/datepicker/viewport.html Modified: trunk/ui/ui.datepicker.js Log: datepicker: fixes #3863: fixed vertical position when scroll position is present and added a viewport visual testcase. Added: trunk/tests/visual/datepicker/viewport.html ============================================================================== --- (empty file) +++ trunk/tests/visual/datepicker/viewport.html Tue Jan 27 21:11:10
r1819 - trunk/ui
Author: scott.gonzalez Date: Tue Jan 27 19:46:35 2009 New Revision: 1819 Modified: trunk/ui/ui.core.js Log: $.widget: Fixed #3965: Copy properties from original event on to new event in _trigger. Modified: trunk/ui/ui.core.js ============================================================================== --- trunk/ui/ui.core.js (original) +++ trunk/ui/ui.core.js Tue Jan 27 19:46:35 2009 @@ -363,6 +363,14 @@ event = $.Event(event); event.type = eventName; + // copy original
widget event names should use namespaced events
In 1.6rc5, _trigger creates a custom event with the name this.widgetEventPrefix + type Is there a reason it's not type + '.' + this.widgetEventPrefix to use namespaced events (http://docs.jquery.com/Namespaced_Events)? That would be consistent with the purpose of namespaced events, and would allow destroy (or the user) to do this.element.unbind('.'+this.widgetEventPrefix) to clean up any leftover event handlers. This would also be consistent with the actual UI widgets, all of which use things like
r1818 - trunk/ui
Author: scott.gonzalez Date: Tue Jan 27 17:21:50 2009 New Revision: 1818 Modified: trunk/ui/ui.core.js Log: Mouse: Fixed #3552, reverted r1763: Let mouse events propagate. Modified: trunk/ui/ui.core.js ============================================================================== --- trunk/ui/ui.core.js (original) +++ trunk/ui/ui.core.js Tue Jan 27 17:21:50 2009 @@ -412,6 +412,9 @@ }, _mouseDown: function(event) { + // don't let more than one widget handle mouseStart + if
r1817 - trunk/demos/effect_types
Author: fg.todd Date: Tue Jan 27 14:46:40 2009 New Revision: 1817 Added: trunk/demos/effect_types/ trunk/demos/effect_types/blind.html trunk/demos/effect_types/bounce.html trunk/demos/effect_types/clip.html trunk/demos/effect_types/default.html trunk/demos/effect_types/drop.html trunk/demos/effect_types/explode.html trunk/demos/effect_types/fold.html trunk/demos/effect_types/highlight.html trunk/demos/effect_types/index.html trunk/demos/effect_types/puff.html trunk/demos/effect_types/pulsate.html
Developer center mockup
The final item on my to-do list is to make the Development page fit into the rest of the site design and look a bit more up-to-date in terms of what we're up to. https://jqueryui.pbwiki.com/f/development.png At the top left, we think adding the latest status update (originally on the wiki) to the page so everyone can see the latest status is probably most important. Below that, all the ticket report links are listed out in a compact format along with an intro that explains the process of getting
r1814 - in trunk: demos/dialog ui
Author: paul.bakaus Date: Tue Jan 27 08:53:46 2009 New Revision: 1814 Modified: trunk/demos/dialog/modal-form.html trunk/demos/dialog/modal-message.html trunk/demos/dialog/modal.html trunk/ui/ui.dialog.js Log: dialog: - implemented themeroller overlay, removes option overlay (now handled through CSS) (implements #3681) - implemented shadow option (boolean), if set to true, adds shadow from css framework (implements #3681) Modified: trunk/demos/dialog/modal-form.html ==============================================================================
Next Page