r1887 - trunk/tests/unit/accordion
Author: scott.gonzalez Date: Thu Jan 29 20:01:04 2009 New Revision: 1887 Modified: trunk/tests/unit/accordion/accordion.html trunk/tests/unit/accordion/accordion.js Log: Accordion: Fixed tests. Modified: trunk/tests/unit/accordion/accordion.html ============================================================================== --- trunk/tests/unit/accordion/accordion.html (original) +++ trunk/tests/unit/accordion/accordion.html Thu Jan 29 20:01:04 2009 @@ -52,8 +52,8 @@ </div> <ul id="navigation">
r1886 - in trunk: demos/effect_types demos/effects_general tests/static/slider tests/visual/accor...
Author: rdworth Date: Thu Jan 29 19:52:48 2009 New Revision: 1886 Modified: trunk/demos/effect_types/all_effects.html (props changed) trunk/demos/effects_general/bounce.html (contents, props changed) trunk/demos/effects_general/default.html (contents, props changed) trunk/demos/effects_general/highlight.html (contents, props changed) trunk/demos/effects_general/index.html (contents, props changed) trunk/demos/effects_general/pulsate.html (contents, props changed) trunk/demos/effects_general/scale.html
r1881 - trunk/tests/unit/dialog
Author: rdworth Date: Thu Jan 29 19:08:20 2009 New Revision: 1881 Modified: trunk/tests/unit/dialog/dialog.js Log: dialog unit tests: no more overlay option Modified: trunk/tests/unit/dialog/dialog.js ============================================================================== --- trunk/tests/unit/dialog/dialog.js (original) +++ trunk/tests/unit/dialog/dialog.js Thu Jan 29 19:08:20 2009 @@ -457,10 +457,6 @@ ok(false, "missing test"); }); -test("overlay", function() { - ok(false, "missing
r1879 - trunk/tests/unit/accordion
Author: rdworth Date: Thu Jan 29 19:00:38 2009 New Revision: 1879 Modified: trunk/tests/unit/accordion/accordion.js Log: accordion unit tests: fixed cap. of autoHeight Modified: trunk/tests/unit/accordion/accordion.js ============================================================================== --- trunk/tests/unit/accordion/accordion.js (original) +++ trunk/tests/unit/accordion/accordion.js Thu Jan 29 19:00:38 2009 @@ -22,7 +22,7 @@ state($('#list1').accordion(), 1, 0, 0); }); -test("autoheight",
r1884 - trunk/tests/visual/dialog
Author: rdworth Date: Thu Jan 29 19:25:06 2009 New Revision: 1884 Added: trunk/tests/visual/dialog/dialog_option_closeOnEscape_false.html (contents, props changed) trunk/tests/visual/dialog/dialog_option_closeOnEscape_true.html (contents, props changed) Log: dialog unit tests: Added option closeOnEscape tests Added: trunk/tests/visual/dialog/dialog_option_closeOnEscape_false.html ============================================================================== --- (empty file) +++ trunk/tests/visual/dialog/dialog_option_closeOnEscape_false.html Thu
Droppable - working with zIndex
Hi guys, I needed change any things in Droppable UI because its don't have any way to control what element that can be droppable based in z-Index property. The script that I created, check all elements droppable and drop only in the element that have the major zIndex property. In drop function change this line if (!this.options.disabled && this.visible && $.ui.intersect (draggable, this, this.options.tolerance)) to: if (!this.options.disabled && this.visible && this.isover == 0) in drag function
r1877 - trunk/demos/dialog
Author: scottjehl Date: Thu Jan 29 13:48:09 2009 New Revision: 1877 Modified: trunk/demos/dialog/modal-form.html Log: tossed some framework classes on it, adjusted style. Set autoOpen to false - otherwise the purpose of the dialog is lost on the user Modified: trunk/demos/dialog/modal-form.html ============================================================================== --- trunk/demos/dialog/modal-form.html (original) +++ trunk/demos/dialog/modal-form.html Thu Jan 29 13:48:09 2009 @@ -13,12
Dialog Form Demo
Someone has requested a more real-world demo for dialogs with forms: <a href="http://groups.google.com/group/jquery-ui/browse_thread/thread/6cdc93580ff72797?hl=en">http://groups.google.com/group/jquery-ui/browse_thread/thread/6cdc93580ff72797?hl=en</a> I've started modifying the modal form demo that we have to match the functionality the user has requested. I think at this point it mostly just needs some styling, but it's 1:00a, I've been looking at crazy bugs all night and my brain is melting.
r1876 - trunk/tests/static/accordion
Author: scottjehl Date: Thu Jan 29 12:16:19 2009 New Revision: 1876 Modified: trunk/tests/static/accordion/dl.html (props changed) trunk/tests/static/accordion/ul.html (props changed) Log: mime type, eol
r1875 - trunk/demos/dialog
Author: rdworth Date: Thu Jan 29 12:14:30 2009 New Revision: 1875 Added: trunk/demos/dialog/modal-form.html - copied unchanged from r1874, /trunk/demos/dialog/modal-form2.html Removed: trunk/demos/dialog/modal-form2.html Log: demos dialog: Replaced old modal form with new functioning one. Thanks Scott G and Cloudream.
r1874 - trunk/demos/dialog
Author: rdworth Date: Thu Jan 29 12:13:00 2009 New Revision: 1874 Modified: trunk/demos/dialog/modal-form2.html Log: demos dialog modal-form2: changed link to button, removed autoOpen: false Modified: trunk/demos/dialog/modal-form2.html ============================================================================== --- trunk/demos/dialog/modal-form2.html (original) +++ trunk/demos/dialog/modal-form2.html Thu Jan 29 12:13:00 2009 @@ -54,7 +54,6 @@ } $("#dialog").dialog({
r1873 - trunk/demos/dialog
Author: rdworth Date: Thu Jan 29 12:09:37 2009 New Revision: 1873 Modified: trunk/demos/dialog/modal-form2.html (props changed) Log: eol-style and mime-type
r1872 - trunk/tests/static/accordion
Author: scottjehl Date: Thu Jan 29 12:04:27 2009 New Revision: 1872 Added: trunk/tests/static/accordion/dl.html trunk/tests/static/accordion/ul.html Removed: trunk/tests/static/accordion/accordion.html trunk/tests/static/accordion/default _nowrappers.html Modified: trunk/tests/static/accordion/default.html Log: markup updates to support various container element types. accordion-groups are no longer needed. Also content wraps are gone. CSS for this is in the head - as it will break the rest of trunk
r1853 - trunk/ui
Author: paul.bakaus Date: Thu Jan 29 05:34:58 2009 New Revision: 1853 Modified: trunk/ui/effects.core.js Log: effects: fixed various problems with order of callbacks (i.e. show('drop', 500) wasn't working) (additionally fixes #3912) Modified: trunk/ui/effects.core.js ============================================================================== --- trunk/ui/effects.core.js (original) +++ trunk/ui/effects.core.js Thu Jan 29 05:34:58 2009 @@ -132,6 +132,18 @@ } }); + +function _normalizeArguments(a,
r1869 - in trunk: demos/draggable ui
Author: paul.bakaus Date: Thu Jan 29 10:36:55 2009 New Revision: 1869 Modified: trunk/demos/draggable/sortable.html trunk/ui/ui.draggable.js Log: draggable: connectToSortable couldn't accept strings (fixes #3984) Modified: trunk/demos/draggable/sortable.html ============================================================================== --- trunk/demos/draggable/sortable.html (original) +++ trunk/demos/draggable/sortable.html Thu Jan 29 10:36:55 2009 @@ -18,7 +18,7 @@ revert: true
r1871 - trunk/demos/effects_general
Author: paul.bakaus Date: Thu Jan 29 11:04:13 2009 New Revision: 1871 Modified: trunk/demos/effects_general/bounce.html trunk/demos/effects_general/default.html trunk/demos/effects_general/highlight.html trunk/demos/effects_general/pulsate.html trunk/demos/effects_general/scale.html trunk/demos/effects_general/shake.html trunk/demos/effects_general/size.html trunk/demos/effects_general/transfer.html Log: demos: readded effects_general for 1.6rc6 (updated to jQuery 1.3.1) Modified: trunk/demos/effects_general/bounce.html
UI open source license info for web site
hi all -- jQuery links directly to the relevant license info on their site (http://dev.jquery.com/browser/trunk/jquery/MIT-LICENSE.txt), and it'd be ideal if we could do the same and link UI's from the About pg. Do we have similar text somewhere in the repository? thanks, Maggie
about jQuery UI
hi all, we did a quick revamp of the About page: http://wiki.jqueryui.com/f/about.png. if this looks good, I can update the template today. thanks, Maggie
Draggable: remove greedy option?
I wonder if it might make sense to remove draggable's greedy option in 1.7. Now that we have custom events bubbling (in jQuery 1.3), couldn't we leave it up to a drop callback whether to return false or stop propagation? This seems a lot more consistent as well as flexible, because a droppable could decide based on the current drop (and other things) whether or not to be greedy at that moment, rather than it being part of its initialization state. Thoughts? - Richard
r1870 - trunk/demos/effects_general
Author: paul.bakaus Date: Thu Jan 29 11:02:00 2009 New Revision: 1870 Added: trunk/demos/effects_general/ trunk/demos/effects_general/bounce.html trunk/demos/effects_general/default.html trunk/demos/effects_general/highlight.html trunk/demos/effects_general/index.html trunk/demos/effects_general/pulsate.html trunk/demos/effects_general/scale.html trunk/demos/effects_general/shake.html trunk/demos/effects_general/size.html trunk/demos/effects_general/transfer.html Log: demos: readded effects_general
r1868 - trunk/tests/visual/slider
Author: rdworth Date: Thu Jan 29 09:06:47 2009 New Revision: 1868 Added: trunk/tests/visual/slider/slider_horizontal.html (contents, props changed) trunk/tests/visual/slider/slider_horizontal_range.html (contents, props changed) trunk/tests/visual/slider/slider_horizontal_range_max.html (contents, props changed) trunk/tests/visual/slider/slider_horizontal_range_min.html (contents, props changed) trunk/tests/visual/slider/slider_vertical.html - copied, changed from r1864, /trunk/tests/visual/slider/default.html
r1867 - trunk/tests/static/slider
Author: rdworth Date: Thu Jan 29 08:49:22 2009 New Revision: 1867 Modified: trunk/tests/static/slider/slider_vertical.html Log: slider static tests: a couple more tests Modified: trunk/tests/static/slider/slider_vertical.html ============================================================================== --- trunk/tests/static/slider/slider_vertical.html (original) +++ trunk/tests/static/slider/slider_vertical.html Thu Jan 29 08:49:22 2009 @@ -10,7 +10,7 @@ </head> <body> -<div id="slider-vertical-range"
r1866 - trunk/tests/static/slider
Author: rdworth Date: Thu Jan 29 08:42:35 2009 New Revision: 1866 Added: trunk/tests/static/slider/slider_horizontal.html - copied, changed from r1865, /trunk/tests/static/slider/slider_horizontal_range.html trunk/tests/static/slider/slider_vertical.html - copied, changed from r1865, /trunk/tests/static/slider/slider_vertical_range.html Log: slider static tests: a couple more tests Copied: trunk/tests/static/slider/slider_horizontal.html (from r1865, /trunk/tests/static/slider/slider_horizontal_range.html)
r1865 - trunk/tests/static/slider
Author: rdworth Date: Thu Jan 29 08:32:32 2009 New Revision: 1865 Added: trunk/tests/static/slider/slider_horizontal_range.html - copied unchanged from r1864, /trunk/tests/static/slider/horizontal_range.html trunk/tests/static/slider/slider_horizontal_range_max.html - copied unchanged from r1864, /trunk/tests/static/slider/horizontal_range_max.html trunk/tests/static/slider/slider_horizontal_range_min.html - copied unchanged from r1864, /trunk/tests/static/slider/horizontal_range_min.html trunk/tests/static/slider/slider_vertical_range.html
r1864 - trunk/tests/static/slider
Author: scottjehl Date: Thu Jan 29 08:22:13 2009 New Revision: 1864 Added: trunk/tests/static/slider/default_vertical.html Removed: trunk/tests/static/slider/slider.html Modified: trunk/tests/static/slider/horizontal_range_max.html trunk/tests/static/slider/horizontal_range_min.html trunk/tests/static/slider/vertical_range_max.html Log: css updates to abstract left, right, bottom, top values into CSS Added: trunk/tests/static/slider/default_vertical.html ==============================================================================
r1863 - trunk/themes/base
Author: scottjehl Date: Thu Jan 29 08:18:02 2009 New Revision: 1863 Modified: trunk/themes/base/ui.slider.css Log: css updates to abstract left, right, bottom, top values into CSS Modified: trunk/themes/base/ui.slider.css ============================================================================== --- trunk/themes/base/ui.slider.css (original) +++ trunk/themes/base/ui.slider.css Thu Jan 29 08:18:02 2009 @@ -6,8 +6,12 @@ .ui-slider-horizontal { height: .8em; } .ui-slider-horizontal .ui-slider-handle
r1862 - trunk/demos
Author: fg.todd Date: Thu Jan 29 08:17:54 2009 New Revision: 1862 Modified: trunk/demos/index.html Log: Commented out new effects, about and theme left nav links, restored simple effect demo links from live site. Modified: trunk/demos/index.html ============================================================================== --- trunk/demos/index.html (original) +++ trunk/demos/index.html Thu Jan 29 08:17:54 2009 @@ -247,6 +247,12 @@ <dd><a href="progressbar/index.html">Progressbar</a></dd>
r1861 - trunk/tests/static/slider
Author: rdworth Date: Thu Jan 29 07:44:05 2009 New Revision: 1861 Added: trunk/tests/static/slider/vertical_range.html - copied, changed from r1857, /trunk/tests/static/slider/horizontal_range.html trunk/tests/static/slider/vertical_range_max.html - copied, changed from r1857, /trunk/tests/static/slider/horizontal_range_max.html trunk/tests/static/slider/vertical_range_min.html - copied, changed from r1857, /trunk/tests/static/slider/horizontal_range_min.html Modified: trunk/tests/static/slider/horizontal_range.html
Need help ASAP collecting "best of" UI plugin examples for an article
Hi all - There is up coming article for "Designing Web Interfaces" that is going to compare how the major RIA libraries stack up for common UI controls. Here is the summary of the article along with details on the 30 UI widgets they are going to be using to compare the various libraries and tools: http://designingwebinterfaces.com/posts The jQuery team wants to help the the authors by preparing a list of examples so they can see all the great plugins out there in the community. To help us on the
r1860 - trunk/ui
Author: paul.bakaus Date: Thu Jan 29 07:25:02 2009 New Revision: 1860 Modified: trunk/ui/ui.sortable.js Log: sortable: containment option now respects the padding (fixes #3958) Modified: trunk/ui/ui.sortable.js ============================================================================== --- trunk/ui/ui.sortable.js (original) +++ trunk/ui/ui.sortable.js Thu Jan 29 07:25:02 2009 @@ -778,10 +778,10 @@ var over = ($(ce).css("overflow") != 'hidden'); this.containment =
r1859 - trunk/ui
Author: paul.bakaus Date: Thu Jan 29 07:22:43 2009 New Revision: 1859 Modified: trunk/ui/ui.draggable.js Log: draggable: containment option now respects the padding (fixes #3957) Modified: trunk/ui/ui.draggable.js ============================================================================== --- trunk/ui/ui.draggable.js (original) +++ trunk/ui/ui.draggable.js Thu Jan 29 07:22:43 2009 @@ -272,10 +272,10 @@ var over = ($(ce).css("overflow") != 'hidden'); this.containment
r1858 - trunk/ui
Author: paul.bakaus Date: Thu Jan 29 07:13:47 2009 New Revision: 1858 Modified: trunk/ui/ui.slider.js Log: slider: fixed orientation detection Modified: trunk/ui/ui.slider.js ============================================================================== --- trunk/ui/ui.slider.js (original) +++ trunk/ui/ui.slider.js Thu Jan 29 07:13:47 2009 @@ -20,8 +20,7 @@ var self = this, o = this.options; this._keySliding = false; this._handleIndex = null; - this.orientation
r1856 - trunk/tests/static/slider
Author: rdworth Date: Thu Jan 29 06:45:45 2009 New Revision: 1856 Added: trunk/tests/static/slider/slider_range.html (contents, props changed) trunk/tests/static/slider/slider_range_min.html (contents, props changed) Log: slider static tests: range, range min Added: trunk/tests/static/slider/slider_range.html ============================================================================== --- (empty file) +++ trunk/tests/static/slider/slider_range.html Thu Jan 29 06:45:45 2009 @@ -0,0 +1,20 @@ +<!doctype
Ticket #3971
This ticket (#3971 - resizable dialog jumps in IE6 when scrolled down) seems to be fixed with the trunk (fixed on r1804). Anyone can make me a favor and test this ticket on the site with the latest trunk to confirm if it's fixed or not?<br clear="all"> -- Eduardo Lundgren Software Engineer Liferay, Inc. Enterprise. Open Source. For Life.
r1852 - trunk/tests/visual/dialog
Author: rdworth Date: Thu Jan 29 05:10:01 2009 New Revision: 1852 Added: trunk/tests/visual/dialog/dialog_on_page_with_scrollbars.html (contents, props changed) Log: dialog visual tests: Added new test 'Dialog on page with scrollbars' Added: trunk/tests/visual/dialog/dialog_on_page_with_scrollbars.html ============================================================================== --- (empty file) +++ trunk/tests/visual/dialog/dialog_on_page_with_scrollbars.html Thu Jan 29 05:10:01 2009 @@ -0,0
r1850 - trunk/ui
Author: paul.bakaus Date: Thu Jan 29 04:33:44 2009 New Revision: 1850 Modified: trunk/ui/ui.resizable.js Log: resizable: removed ui.options Modified: trunk/ui/ui.resizable.js ============================================================================== --- trunk/ui/ui.resizable.js (original) +++ trunk/ui/ui.resizable.js Thu Jan 29 04:33:44 2009 @@ -492,7 +492,6 @@ helper: this.helper, position: this.position, size: this.size, - options: this.options,
r1849 - trunk/demos/dialog
Author: cloudream@gmail.com Date: Thu Jan 29 04:17:47 2009 New Revision: 1849 Modified: trunk/demos/dialog/modal-form2.html Log: demos: dialog modal form Modified: trunk/demos/dialog/modal-form2.html ============================================================================== --- trunk/demos/dialog/modal-form2.html (original) +++ trunk/demos/dialog/modal-form2.html Thu Jan 29 04:17:47 2009 @@ -86,7 +86,7 @@ } }, close: function() { - allFields.val('');
r1855 - trunk/tests/static/slider
Author: rdworth Date: Thu Jan 29 06:34:11 2009 New Revision: 1855 Added: trunk/tests/static/slider/slider_range_max.html (contents, props changed) Log: slider static tests: new test 'Slider range max' Added: trunk/tests/static/slider/slider_range_max.html ============================================================================== --- (empty file) +++ trunk/tests/static/slider/slider_range_max.html Thu Jan 29 06:34:11 2009 @@ -0,0 +1,19 @@ +<!doctype html> +<html> +<head> + <title>Slider
r1848 - trunk/demos/dialog
Author: cloudream@gmail.com Date: Thu Jan 29 04:15:33 2009 New Revision: 1848 Modified: trunk/demos/dialog/modal-form2.html Log: demos: dialog modal form Modified: trunk/demos/dialog/modal-form2.html ============================================================================== --- trunk/demos/dialog/modal-form2.html (original) +++ trunk/demos/dialog/modal-form2.html Thu Jan 29 04:15:33 2009 @@ -8,6 +8,8 @@ <script type="text/javascript" src="../../ui/ui.draggable.js"></script> <script
r1857 - trunk/tests/static/slider
Author: rdworth Date: Thu Jan 29 06:46:51 2009 New Revision: 1857 Added: trunk/tests/static/slider/horizontal_range.html - copied unchanged from r1856, /trunk/tests/static/slider/slider_range.html trunk/tests/static/slider/horizontal_range_max.html - copied unchanged from r1855, /trunk/tests/static/slider/slider_range_max.html trunk/tests/static/slider/horizontal_range_min.html - copied unchanged from r1856, /trunk/tests/static/slider/slider_range_min.html Removed: trunk/tests/static/slider/slider_range.html
Next Page