r2057 - trunk/demos/sortable
Author: bohdan.ganicky Date: Mon Feb 9 11:59:19 2009 New Revision: 2057 Modified: trunk/demos/sortable/connect-lists-through-tabs.html Log: demos/sortable/connect-lists-through-tabs: quick selector bugfix Modified: trunk/demos/sortable/connect-lists-through-tabs.html ============================================================================== --- trunk/demos/sortable/connect-lists-through-tabs.html (original) +++ trunk/demos/sortable/connect-lists-through-tabs.html Mon Feb 9 11:59:19 2009
r2052 - trunk/ui
Author: eduardolundgren Date: Sun Feb 8 20:36:43 2009 New Revision: 2052 Modified: trunk/ui/ui.resizable.js Log: Resizable: Fixed #4099 - Copy .data("resizable") to the wrapper element Modified: trunk/ui/ui.resizable.js ============================================================================== --- trunk/ui/ui.resizable.js (original) +++ trunk/ui/ui.resizable.js Sun Feb 8 20:36:43 2009 @@ -46,7 +46,10 @@ ); //Overwrite the original this.element - this.element
r2056 - trunk/tests/unit/resizable
Author: scott.gonzalez Date: Mon Feb 9 06:04:39 2009 New Revision: 2056 Modified: trunk/tests/unit/resizable/resizable_defaults.js Log: Resizable tests: Removed preserveCursor and proportionallyResize options. Modified: trunk/tests/unit/resizable/resizable_defaults.js ============================================================================== --- trunk/tests/unit/resizable/resizable_defaults.js (original) +++ trunk/tests/unit/resizable/resizable_defaults.js Mon Feb 9 06:04:39 2009 @@ -22,9
r2055 - trunk/tests/unit/resizable
Author: scott.gonzalez Date: Mon Feb 9 06:03:12 2009 New Revision: 2055 Modified: trunk/tests/unit/resizable/resizable_defaults.js Log: Resizable tests: Removed transparent option. Modified: trunk/tests/unit/resizable/resizable_defaults.js ============================================================================== --- trunk/tests/unit/resizable/resizable_defaults.js (original) +++ trunk/tests/unit/resizable/resizable_defaults.js Mon Feb 9 06:03:12 2009 @@ -25,7 +25,6 @@ preserveCursor:
r2054 - in trunk: tests/unit/dialog ui
Author: rdworth Date: Mon Feb 9 03:15:23 2009 New Revision: 2054 Modified: trunk/tests/unit/dialog/dialog_defaults.js trunk/ui/ui.dialog.js Log: dialog: added some missing defaults Modified: trunk/tests/unit/dialog/dialog_defaults.js ============================================================================== --- trunk/tests/unit/dialog/dialog_defaults.js (original) +++ trunk/tests/unit/dialog/dialog_defaults.js Mon Feb 9 03:15:23 2009 @@ -12,13 +12,15 @@ dialogClass: '', draggable:
r2053 - trunk/demos/sortable
Author: bohdan.ganicky Date: Mon Feb 9 03:13:42 2009 New Revision: 2053 Modified: trunk/demos/sortable/connect-lists-through-tabs.html Log: demos/sortable/connect-lists-through-tabs: finetuning Modified: trunk/demos/sortable/connect-lists-through-tabs.html ============================================================================== --- trunk/demos/sortable/connect-lists-through-tabs.html (original) +++ trunk/demos/sortable/connect-lists-through-tabs.html Mon Feb 9 03:13:42 2009 @@ -18,14
Ticket #4065
While working on http://dev.jqueryui.com/ticket/4065, which I have posted some information specifically about in the ticket, I believe I found another bug that I haven't seen reported, but that seems orthogonal. Using the code provided in the ticket: $("#oo_add_img_box") .dialog({ modal: true, buttons: { 'OK': function() { $(this).dialog('close'); } } }) .dialog('close'); I have found that unlike previous versions of the
r2027 - trunk/tests/unit/sortable
Author: paul.bakaus Date: Thu Feb 5 23:39:52 2009 New Revision: 2027 Modified: trunk/tests/unit/sortable/sortable_events.js Log: sortable: implemented tests for start,stop,beforeStop,change and update Modified: trunk/tests/unit/sortable/sortable_events.js ============================================================================== --- trunk/tests/unit/sortable/sortable_events.js (original) +++ trunk/tests/unit/sortable/sortable_events.js Thu Feb 5 23:39:52 2009 @@ -6,27 +6,124 @@ module("sortable:
r2050 - trunk/ui
Author: eduardolundgren Date: Sun Feb 8 19:59:16 2009 New Revision: 2050 Modified: trunk/ui/ui.resizable.js Log: Resizable: Fixed #4092 - preserveCursor option should be removed Modified: trunk/ui/ui.resizable.js ============================================================================== --- trunk/ui/ui.resizable.js (original) +++ trunk/ui/ui.resizable.js Sun Feb 8 19:59:16 2009 @@ -243,10 +243,8 @@ //Aspect Ratio this.aspectRatio = (typeof o.aspectRatio == 'number') ? o.aspectRatio
r2051 - trunk/ui
Author: eduardolundgren Date: Sun Feb 8 20:33:50 2009 New Revision: 2051 Modified: trunk/ui/ui.resizable.js Log: Resizable: Fixed #4090 - proportionallyResize option should be removed (made internal) Modified: trunk/ui/ui.resizable.js ============================================================================== --- trunk/ui/ui.resizable.js (original) +++ trunk/ui/ui.resizable.js Sun Feb 8 20:33:50 2009 @@ -23,7 +23,7 @@ _aspectRatio: !!(o.aspectRatio), aspectRatio:
r2049 - trunk/ui
Author: eduardolundgren Date: Sun Feb 8 19:56:02 2009 New Revision: 2049 Modified: trunk/ui/ui.resizable.js Log: Resizable: Fixed #4098 - Remove transparent option Modified: trunk/ui/ui.resizable.js ============================================================================== --- trunk/ui/ui.resizable.js (original) +++ trunk/ui/ui.resizable.js Sun Feb 8 19:56:02 2009 @@ -103,9 +103,6 @@ if(this.handles[i].constructor == String) this.handles[i] = $(this.handles[i],
r2048 - trunk/ui
Author: scott.gonzalez Date: Sun Feb 8 18:32:43 2009 New Revision: 2048 Modified: trunk/ui/ui.dialog.js Log: Dialog: Don't allow the height of the content area to be negative. Modified: trunk/ui/ui.dialog.js ============================================================================== --- trunk/ui/ui.dialog.js (original) +++ trunk/ui/ui.dialog.js Sun Feb 8 18:32:43 2009 @@ -469,7 +469,7 @@ minHeight: Math.max(options.minHeight - nonContentHeight, 0), height:
r2047 - in trunk: tests/unit/resizable ui
Author: scott.gonzalez Date: Sun Feb 8 17:36:51 2009 New Revision: 2047 Modified: trunk/tests/unit/resizable/resizable_defaults.js trunk/ui/ui.resizable.js Log: Resizable: Fixed #4093: Removed disableSelection option. Modified: trunk/tests/unit/resizable/resizable_defaults.js ============================================================================== --- trunk/tests/unit/resizable/resizable_defaults.js (original) +++ trunk/tests/unit/resizable/resizable_defaults.js Sun Feb 8 17:36:51 2009
icon set creation
Hi, Recently i got the attitude to generate my icon set directly by this url http://ui.jquery.com/themeroller/images/?new=CC3355&w=256&h=240&f=png&fltr[]=rcd|256&fltr[]=mask|icons/icons.png i find it really useful and practical, the good thing is you can generate in one second all your icons with your favourite colour. However, i'd like to expand my icon set with some new icons but i'd also like to keep using this method. is there any possibility to have that script or modify it to accept colour
r2046 - trunk/tests/visual/resizable
Author: rdworth Date: Sat Feb 7 22:10:29 2009 New Revision: 2046 Added: trunk/tests/visual/resizable/resizable_option_preventDefault_false.html (contents, props changed) trunk/tests/visual/resizable/resizable_option_preventDefault_true.html (contents, props changed) Modified: trunk/tests/visual/resizable/resizable.html Log: resizable visual tests: added option preventDefault tests Modified: trunk/tests/visual/resizable/resizable.html ==============================================================================
Tabs RC5 vs RC6+
Were there any changes to the way Tabs is supposed to work between RC5 and RC6? I have a few sets of Tabs in my application, and one set of nested tabs, which works fine in rc5, but in rc6 doesn't set up properly in IE. Things get even worse when I build from the current trunk in SVN, the content isn't visible at all, and the interaction doesn't bind at all in either FF or IE, so I'm assuming that's not ready for prime-time, which is fair. Can anyone provide some insight into any changes that might
r2045 - trunk/ui
Author: rdworth Date: Sat Feb 7 16:55:16 2009 New Revision: 2045 Modified: trunk/ui/ui.core.js Log: Removed unused code obsoleted by #3906 and r1754 Modified: trunk/ui/ui.core.js ============================================================================== --- trunk/ui/ui.core.js (original) +++ trunk/ui/ui.core.js Sat Feb 7 16:55:16 2009 @@ -43,24 +43,6 @@ : a !== b && a.contains(b); }, - cssCache: {}, - css: function(name) { - if ($.ui.cssCache[name]) { return
r2035 - trunk/demos/sortable
Author: bohdan.ganicky Date: Sat Feb 7 08:00:01 2009 New Revision: 2035 Added: trunk/demos/sortable/with-droppable.html (contents, props changed) Log: demos/sortable/with-droppable: testcase for #4088 (Unable to remove() ui.draggable (sortable item) immediately after the drop callback.), not added to the index page Added: trunk/demos/sortable/with-droppable.html ============================================================================== --- (empty file) +++ trunk/demos/sortable/with-droppable.html Sat
r2044 - trunk/tests/unit/resizable
Author: rdworth Date: Sat Feb 7 13:22:47 2009 New Revision: 2044 Modified: trunk/tests/unit/resizable/resizable_defaults.js Log: resizable unit tests: defaults alpha order Modified: trunk/tests/unit/resizable/resizable_defaults.js ============================================================================== --- trunk/tests/unit/resizable/resizable_defaults.js (original) +++ trunk/tests/unit/resizable/resizable_defaults.js Sat Feb 7 13:22:47 2009 @@ -3,10 +3,10 @@ */ var resizable_defaults
r2043 - trunk/tests/visual/droppable
Author: rdworth Date: Sat Feb 7 11:02:08 2009 New Revision: 2043 Added: trunk/tests/visual/droppable/droppable.css (contents, props changed) trunk/tests/visual/droppable/droppable_option_accept_default.html (contents, props changed) trunk/tests/visual/droppable/droppable_option_accept_function.html (contents, props changed) trunk/tests/visual/droppable/droppable_option_accept_selector.html (contents, props changed) Modified: trunk/tests/visual/droppable/droppable.html Log: droppable visual tests:
r2042 - trunk/ui
Author: rdworth Date: Sat Feb 7 10:28:29 2009 New Revision: 2042 Modified: trunk/ui/ui.droppable.js Log: droppable: defaults - alpha order Modified: trunk/ui/ui.droppable.js ============================================================================== --- trunk/ui/ui.droppable.js (original) +++ trunk/ui/ui.droppable.js Sat Feb 7 10:28:29 2009 @@ -136,9 +136,9 @@ version: "@VERSION", eventPrefix: 'drop', defaults: { - addClasses: true, accept: '*', activeClass:
r2041 - trunk/tests/visual
Author: rdworth Date: Sat Feb 7 10:15:14 2009 New Revision: 2041 Modified: trunk/tests/visual/visual.css Log: visual tests: added default style for #draggable Modified: trunk/tests/visual/visual.css ============================================================================== --- trunk/tests/visual/visual.css (original) +++ trunk/tests/visual/visual.css Sat Feb 7 10:15:14 2009 @@ -1 +1,2 @@ body { font-size: 62.5%; } +#draggable { width: 100px; height: 100px; background: #abc; }
r2040 - in trunk: demos/droppable tests/visual/droppable
Author: rdworth Date: Sat Feb 7 09:47:25 2009 New Revision: 2040 Added: trunk/tests/visual/droppable/droppable_ticket_4087.html - copied, changed from r2039, /trunk/demos/droppable/remove-draggable-after-drop.html Removed: trunk/demos/droppable/remove-draggable-after-drop.html Log: Moved #4087 test page from demos/droppable to /tests/visual/droppable Copied: trunk/tests/visual/droppable/droppable_ticket_4087.html (from r2039, /trunk/demos/droppable/remove-draggable-after-drop.html) ==============================================================================
r2039 - in trunk/tests/visual: droppable sortable
Author: rdworth Date: Sat Feb 7 09:40:54 2009 New Revision: 2039 Added: trunk/tests/visual/droppable/droppable_ticket_4088.html - copied, changed from r2038, /trunk/tests/visual/sortable/sortable_ticket_4088.html Removed: trunk/tests/visual/sortable/sortable_ticket_4088.html Log: fixed name and location of test page for #4088 - droppable, not sortable issue Copied: trunk/tests/visual/droppable/droppable_ticket_4088.html (from r2038, /trunk/tests/visual/sortable/sortable_ticket_4088.html) ==============================================================================
r2038 - trunk/tests/visual/sortable
Author: rdworth Date: Sat Feb 7 09:33:52 2009 New Revision: 2038 Modified: trunk/tests/visual/sortable/sortable_ticket_4088.html Log: sortable visual test: Updated #4088 test page to match visual TEST/ASSERT format Modified: trunk/tests/visual/sortable/sortable_ticket_4088.html ============================================================================== --- trunk/tests/visual/sortable/sortable_ticket_4088.html (original) +++ trunk/tests/visual/sortable/sortable_ticket_4088.html Sat Feb 7
r2037 - in trunk: demos/sortable tests/visual/sortable
Author: rdworth Date: Sat Feb 7 09:19:25 2009 New Revision: 2037 Added: trunk/tests/visual/sortable/sortable_ticket_4088.html - copied unchanged from r2035, /trunk/demos/sortable/with-droppable.html Removed: trunk/demos/sortable/with-droppable.html Log: moved test page (#4088) from demos/sortable to tests/visual/sortable
r2036 - trunk/tests/visual/sortable
Author: rdworth Date: Sat Feb 7 09:15:47 2009 New Revision: 2036 Added: trunk/tests/visual/sortable/sortable_option_revert_false.html (contents, props changed) trunk/tests/visual/sortable/sortable_option_revert_true.html (contents, props changed) Log: sortable visual tests: option revert Added: trunk/tests/visual/sortable/sortable_option_revert_false.html ============================================================================== --- (empty file) +++ trunk/tests/visual/sortable/sortable_option_revert_false.html Sat
UI 1.6 rc6 possible bug
Hi, I tried to upgrade to ui 1.6 rc 6 today on my site and I've noticed that when using sortables, after drag-n-drop the opacity remains the same(like when dragging, i.e. was set to 0.5), but this only affects Firefox 3 (ie6 and chrome seem to work ok). Regards & keep up the good work! ;)
r2034 - trunk/demos/droppable
Author: bohdan.ganicky Date: Sat Feb 7 07:39:17 2009 New Revision: 2034 Added: trunk/demos/droppable/remove-draggable-after-drop.html (contents, props changed) Log: demos/droppable/remove-draggable-after-drop: testcase for #4087 (Removing ui.draggable immediately after the drop callback raises an error.), not added to the index page Added: trunk/demos/droppable/remove-draggable-after-drop.html ============================================================================== --- (empty file) +++ trunk/demos/droppable/remove-draggable-after-drop.html Sat
r2032 - trunk/tests/visual/draggable
Author: rdworth Date: Sat Feb 7 06:27:27 2009 New Revision: 2032 Added: trunk/tests/visual/draggable/draggable_option_iframeFix_false.html (contents, props changed) trunk/tests/visual/draggable/draggable_option_iframeFix_selector.html (contents, props changed) trunk/tests/visual/draggable/draggable_option_iframeFix_true.html (contents, props changed) Removed: trunk/tests/visual/draggable/draggable_option_cursorAt_array.html Modified: trunk/tests/visual/draggable/draggable.html trunk/tests/visual/draggable/draggable_option_containment_array.html
r2033 - trunk/ui
Author: scott.gonzalez Date: Sat Feb 7 06:28:14 2009 New Revision: 2033 Modified: trunk/ui/ui.dialog.js Log: Dialog: Fixed #4086: Allow changing the dialogClass option after init. Modified: trunk/ui/ui.dialog.js ============================================================================== --- trunk/ui/ui.dialog.js (original) +++ trunk/ui/ui.dialog.js Sat Feb 7 06:28:14 2009 @@ -15,17 +15,23 @@ (function($) { var setDataSwitch = { - dragStart: "start.draggable", - drag: "drag.draggable",
r2031 - trunk/tests/visual/draggable
Author: rdworth Date: Sat Feb 7 06:09:07 2009 New Revision: 2031 Added: trunk/tests/visual/draggable/draggable_option_containment_array.html (contents, props changed) trunk/tests/visual/draggable/draggable_option_cursorAt_array.html (contents, props changed) trunk/tests/visual/draggable/draggable_option_cursorAt_object.html (contents, props changed) trunk/tests/visual/draggable/draggable_option_handle_selector.html (contents, props changed) Removed: trunk/tests/visual/draggable/draggable.handle.html
r2029 - trunk/tests/unit
Author: rdworth Date: Sat Feb 7 04:34:53 2009 New Revision: 2029 Added: trunk/tests/unit/defaults.html (contents, props changed) Log: unit tests: Added all defaults test page Added: trunk/tests/unit/defaults.html ============================================================================== --- (empty file) +++ trunk/tests/unit/defaults.html Sat Feb 7 04:34:53 2009 @@ -0,0 +1,42 @@ +<!doctype html> +<html lang="en"> +<head> + <title>jQuery UI Defaults</title> + + <script type="text/javascript"
r2030 - trunk/tests/unit/resizable
Author: rdworth Date: Sat Feb 7 04:37:23 2009 New Revision: 2030 Modified: trunk/tests/unit/resizable/resizable_defaults.js Log: resizable unit tests: zIndex default: 1000 Modified: trunk/tests/unit/resizable/resizable_defaults.js ============================================================================== --- trunk/tests/unit/resizable/resizable_defaults.js (original) +++ trunk/tests/unit/resizable/resizable_defaults.js Sat Feb 7 04:37:23 2009 @@ -27,7 +27,7 @@ preventDefault: true,
r2028 - in trunk: . build
Author: rdworth Date: Fri Feb 6 11:44:44 2009 New Revision: 2028 Modified: trunk/ (props changed) trunk/build/build.xml Log: Modified build script to pull docs rendered html directly from docs.jquery.com/UI Modified: trunk/build/build.xml ============================================================================== --- trunk/build/build.xml (original) +++ trunk/build/build.xml Fri Feb 6 11:44:44 2009 @@ -25,6 +25,7 @@ <property name="build.dir" value="build" /> <property name="ui.dir"
New contributor
I did a quick search but didn't find anything to answer this question. I just pulled the jquery ui code and fixed ticket #4065. What steps should I follow to get the fix reviewed and pushed back into the source tree? My changes are sitting in a local git repository that I checked out with git-svn, so I can merge my branch in the trunk and push it whenever, but I'm guessing there is some sort of review process by more senior developers. Thanks
Google Post-commit hooks
This could be useful for us: http://google-code-updates.blogspot.com/2009/01/post-commit-web-hooks-for-google-code.html Jörn
jQuery offsetParent - using with drag/drop UI problem in IE7
hi all, this problem is driving me nuts! i hope to be able to provide as much info as possible to help resolve it!! the site is working fine with the drag n drop, but at some points the drag feature breaks reporting an error with line number 3370 (or there abouts as i have added a couple of lines to try n debug)...the line number points to this line of code... offsetParent = elem.offsetParent, it reports and error in IE with the script debugger...i have tried logging the elem to the console and it
JQuery Dialog - major slowdown when closing a modal dialog
There's a fairly major speed issue on the JQuery UI Dialog in RC6 when in Modal mode. The problem is that on a large page, the dialog can take many seconds to close. I traced the issue down to overlay.destroy(). In there, it's unbinding events from every anchor and :input on the page. I traced the page and found 99.9% of the processing on the dialog close handler is spent on this line (606 of ui.dialog.js): $('a, :input').add([document, window]).unbind('.dialog-overlay'); So the issue seems to be
r2026 - trunk/demos/images
Author: rdworth Date: Thu Feb 5 22:33:56 2009 New Revision: 2026 Added: trunk/demos/images/calendar.gif (contents, props changed) trunk/demos/images/pbar-ani.gif (contents, props changed) Log: duplicated images to fix on demos index Added: trunk/demos/images/calendar.gif ============================================================================== Binary file. No diff available. Added: trunk/demos/images/pbar-ani.gif ==============================================================================
Next Page