r1816 - trunk/ui
Author: paul.bakaus Date: Tue Jan 27 11:17:28 2009 New Revision: 1816 Modified: trunk/ui/ui.draggable.js Log: draggable: fixed snap Modified: trunk/ui/ui.draggable.js ============================================================================== --- trunk/ui/ui.draggable.js (original) +++ trunk/ui/ui.draggable.js Tue Jan 27 11:17:28 2009 @@ -662,8 +662,8 @@ }, drag: function(event, ui) { - var inst = $(this).data("draggable"), o = i.options; - var d = i.options.snapTolerance;
r1815 - trunk/demos/draggable
Author: rdworth Date: Tue Jan 27 10:14:55 2009 New Revision: 1815 Modified: trunk/demos/draggable/delay-start.html Log: demos draggable delay-start: disable text selection Modified: trunk/demos/draggable/delay-start.html ============================================================================== --- trunk/demos/draggable/delay-start.html (original) +++ trunk/demos/draggable/delay-start.html Tue Jan 27 10:14:55 2009 @@ -14,6 +14,7 @@ $(function() { $("#draggable").draggable({
r1813 - trunk/themes/base
Author: scottjehl Date: Tue Jan 27 08:18:06 2009 New Revision: 1813 Modified: trunk/themes/base/ui.theme.css Log: changed theme url to http://ui.jquery.com/themeroller/ and removed token. Modified: trunk/themes/base/ui.theme.css ============================================================================== --- trunk/themes/base/ui.theme.css (original) +++ trunk/themes/base/ui.theme.css Tue Jan 27 08:18:06 2009 @@ -2,7 +2,7 @@ * jQuery UI CSS Framework * Copyright (c) 2009 AUTHORS.txt (http://ui.jquery.com/about)
r1563 - in trunk: demos demos/images documentation release release/build
Author: joern.zaefferer Date: Thu Jan 8 13:51:13 2009 New Revision: 1563 Added: trunk/demos/images/icon-docs-info.gif (contents, props changed) trunk/documentation/ trunk/release/build/style.xsl (contents, props changed) Modified: trunk/demos/demos.css trunk/demos/index.html trunk/release/build.xml Log: integrating documentation into demo files, first draft; run Ant targets docs-download and docs-process to generate the files Modified: trunk/demos/demos.css ==============================================================================
Bug fixing guide
As conversations arise here on the discussion group, we should capture the final output into wiki pages at the moment. These can be rough but the final goal is that these can eventually be tidied up and added as official docs. As an example, I just created a "Bug Fixing Guide" wiki page that summarizes the bug fixing assignment thread and the how to close a big and create auto link thread. https://jqueryui.pbwiki.com/Bug-Fixing-Guide Please feel free to edit and expand but I'd like us to get the
r1812 - trunk/demos
Author: fg.todd Date: Tue Jan 27 08:10:05 2009 New Revision: 1812 Modified: trunk/demos/index.html Log: Added new Effect links and re-instated the About and Theming sections. NOTE: Greedy re-wite is causing an error when loading this into the demos & docs part of the site and needs to be fixed Modified: trunk/demos/index.html ============================================================================== --- trunk/demos/index.html (original) +++ trunk/demos/index.html Tue Jan 27 08:10:05 2009
r1811 - trunk/demos/sortable
Author: paul.bakaus Date: Tue Jan 27 07:36:10 2009 New Revision: 1811 Modified: trunk/demos/sortable/placeholder.html Log: demos: li's must have a height in IE6 in certain cases, or otherwise event.target is the parent (related to #3880) Modified: trunk/demos/sortable/placeholder.html ============================================================================== --- trunk/demos/sortable/placeholder.html (original) +++ trunk/demos/sortable/placeholder.html Tue Jan 27 07:36:10 2009 @@ -9,7 +9,7
r1810 - trunk/ui
Author: paul.bakaus Date: Tue Jan 27 06:58:05 2009 New Revision: 1810 Modified: trunk/ui/ui.droppable.js Log: droppable: 'this' in accept should point to the DOMelement not to a jQuery (fixes #3955) Modified: trunk/ui/ui.droppable.js ============================================================================== --- trunk/ui/ui.droppable.js (original) +++ trunk/ui/ui.droppable.js Tue Jan 27 06:58:05 2009 @@ -76,7 +76,7 @@ var draggable = $.ui.ddmanager.current; if (!draggable
tabbed dialog mashup
We made a static mockup for a tabbed dialog. Essentially it's a dialog with a tab strip in place of its header and content areas (with very minor markup differences). Supporting this requires one extra line of CSS (found in demo page head). We're happy to see components snap together like this visually, and regardless of scripting feasibility, it's useful to test the CSS framework with things like this. Can UI support the scripting for it? http://jquery-ui.googlecode.com/svn/trunk/tests/static/tabbeddialog.html
Resizable criticals bugs
I just fixed all criticals tickets for Resizable with one exception <a href="http://ui.jquery.com/bugs/ticket/3842">http://ui.jquery.com/bugs/ticket/3842</a> (In Opera, if you resize the top resizable first, the bottom resizable jumps down)<br clear="all"> <div class="searchable"> </div> This jump is a very small jump (~3px) it happens because when we set position:absolute with top|left:auto on opera the element re-position itself to respect the auto. It's a very weird bug. If someone have ideas
Docs for effects
Hi all - I just finished writing up the 2 high level landing pages for the effects. We will link to these from the overview and left nav. On the overview, we'll also include a comma delimited list of the methods (event, hide, etc. ) and effect types (puff, blind, explode, etc.) so people can easily get to both levels. Not sure if adding all the second levels to the left nav will get way too long. If we add these links, we are at a point where spindowns in the left nav might be a good idea to explore.
Need Support & Developer page links, books, videos and other content ASAP
Hi all - The last 2 things I want to do is quickly touch up the Support and Developer pages to make them richer and more useful. The support page could be so much better just by collecting some good resources. Right now it's really thin: http://ui.jquery.com/support I have info on the google group and IRC channel but I'd like to list on this page - Twitter accounts to follow - jQuery and jQuery UI books (include future titles) - Popular articles (Smashing mag, Nettuts, etc.) - Getting started/Tutorial/Intro
Documentation fixes
Hi, I updated a few docs to work around some issue we still had: ui-object listings now all use html instead of wiki markup, giving is good results in both the wiki and on our demo pages. I also removed the default demos for Draggable and Tabs - thats a bit more annoying, but currently the best way to get examples properly displayed for each option. Previously, with those default demos in place, each option that didn't have an example would display the default example instead. So in general: If you
r1804 - trunk/ui
Author: eduardolundgren Date: Mon Jan 26 22:22:29 2009 New Revision: 1804 Modified: trunk/ui/ui.resizable.js Log: Fixed #3894 Modified: trunk/ui/ui.resizable.js ============================================================================== --- trunk/ui/ui.resizable.js (original) +++ trunk/ui/ui.resizable.js Mon Jan 26 22:22:29 2009 @@ -220,13 +220,9 @@ this.resizing = true; this.documentScroll = { top: $(document).scrollTop(), left: $(document).scrollLeft() }; - // bugfix
r1808 - in trunk/demos: accordion datepicker dialog droppable slider
Author: rdworth Date: Tue Jan 27 02:08:19 2009 New Revision: 1808 Added: trunk/demos/accordion/custom-icons.html - copied unchanged from r1806, /trunk/demos/accordion/custom_icons.html trunk/demos/datepicker/alt-field.html - copied unchanged from r1806, /trunk/demos/datepicker/alt_field.html trunk/demos/datepicker/date-formats.html - copied unchanged from r1806, /trunk/demos/datepicker/date_formats.html trunk/demos/datepicker/dropdown-month-year.html - copied unchanged from r1806, /trunk/demos/datepicker/dropdown_month_year.html
r1807 - trunk/demos/resizable
Author: rdworth Date: Tue Jan 27 02:05:03 2009 New Revision: 1807 Removed: trunk/demos/resizable/alsoresize.html trunk/demos/resizable/aspectratio.html trunk/demos/resizable/containment.html trunk/demos/resizable/delay.html trunk/demos/resizable/distance.html trunk/demos/resizable/ghost.html trunk/demos/resizable/grid.html trunk/demos/resizable/max.html trunk/demos/resizable/min.html Log: demos/resizable: removed no longer used (renamed) demos
r1802 - trunk/ui
Author: eduardolundgren Date: Mon Jan 26 21:31:57 2009 New Revision: 1802 Modified: trunk/ui/ui.resizable.js Log: Fixed #3879 Modified: trunk/ui/ui.resizable.js ============================================================================== --- trunk/ui/ui.resizable.js (original) +++ trunk/ui/ui.resizable.js Mon Jan 26 21:31:57 2009 @@ -215,7 +215,7 @@ _mouseStart: function(event) { var o = this.options, iniPos = this.element.position(), el = this.element, - num = function(v)
r1806 - trunk/ui
Author: eduardolundgren Date: Mon Jan 26 22:40:31 2009 New Revision: 1806 Modified: trunk/ui/ui.resizable.js Log: Resizable: using isNumber on isminw Modified: trunk/ui/ui.resizable.js ============================================================================== --- trunk/ui/ui.resizable.js (original) +++ trunk/ui/ui.resizable.js Mon Jan 26 22:40:31 2009 @@ -362,7 +362,7 @@ var el = this.helper, o = this.options, pRatio = this._aspectRatio || event.shiftKey, a = this.axis, ismaxw
r1805 - trunk/ui
Author: eduardolundgren Date: Mon Jan 26 22:36:42 2009 New Revision: 1805 Modified: trunk/ui/ui.resizable.js Log: Fixed #3251 Modified: trunk/ui/ui.resizable.js ============================================================================== --- trunk/ui/ui.resizable.js (original) +++ trunk/ui/ui.resizable.js Mon Jan 26 22:36:42 2009 @@ -356,9 +356,13 @@ _respectSize: function(data, event) { + var isNumber = function(value) { + return !isNaN(parseInt(value, 10)) + };
r1803 - trunk/ui
Author: eduardolundgren Date: Mon Jan 26 22:00:41 2009 New Revision: 1803 Modified: trunk/ui/ui.resizable.js Log: Resizable documentScroll reference Modified: trunk/ui/ui.resizable.js ============================================================================== --- trunk/ui/ui.resizable.js (original) +++ trunk/ui/ui.resizable.js Mon Jan 26 22:00:41 2009 @@ -224,7 +224,7 @@ if (el.is('.ui-draggable') || (/absolute/).test(el.css('position'))) { // sOffset decides if document
r1801 - trunk/demos
Author: joern.zaefferer Date: Mon Jan 26 15:45:40 2009 New Revision: 1801 Modified: trunk/demos/index.html Log: demos: load docs after demos, otherwise insert of docs sometimes fails Modified: trunk/demos/index.html ============================================================================== --- trunk/demos/index.html (original) +++ trunk/demos/index.html Mon Jan 26 15:45:40 2009 @@ -168,28 +168,29 @@ $('#demo-link a').attr('href', path); updateDemoNotes();
jQuery UI 1.6 final release schedule
Team, I took a look at what still has to be done for the 1.6 release and updated the development summary status at the top of <a href="http://jqueryui.pbwiki.com/">http://jqueryui.pbwiki.com/</a> See there for full status summary of what's being worked on and left to be done, and add to it if I missed anything. The 1.6rc6 release will be this Thu., as early in the day as possible (late Wed. night would be ideal). This will be an actual candidate release (1.6rc5 went out as soon as it did, still with
r1800 - trunk/demos
Author: paul.bakaus Date: Mon Jan 26 05:46:41 2009 New Revision: 1800 Modified: trunk/demos/index.html Log: demos: removed php code from index.html (was breaking doctype in IE!) Modified: trunk/demos/index.html ============================================================================== --- trunk/demos/index.html (original) +++ trunk/demos/index.html Mon Jan 26 05:46:41 2009 @@ -1,4 +1,3 @@ -<?php if(!isset($plain)) { ?> <!doctype html> <html lang="en"> <head> @@ -228,7 +227,6 @@ </script>
r1798 - in trunk: tests/unit/tabs ui
Author: klaus.hartl Date: Mon Jan 26 03:34:28 2009 New Revision: 1798 Modified: trunk/tests/unit/tabs/tabs.js trunk/ui/ui.tabs.js Log: Tabs: organized code - public and private (pseudo) methods, added unit test for ui data object Modified: trunk/tests/unit/tabs/tabs.js ============================================================================== --- trunk/tests/unit/tabs/tabs.js (original) +++ trunk/tests/unit/tabs/tabs.js Mon Jan 26 03:34:28 2009 @@ -123,6 +123,21 @@ }); + test('callback
r1799 - trunk/ui
Author: paul.bakaus Date: Mon Jan 26 04:11:56 2009 New Revision: 1799 Modified: trunk/ui/ui.accordion.js Log: accordion: navigation option wasn't working (fixes #3944) Modified: trunk/ui/ui.accordion.js ============================================================================== --- trunk/ui/ui.accordion.js (original) +++ trunk/ui/ui.accordion.js Mon Jan 26 04:11:56 2009 @@ -22,7 +22,7 @@ if ( o.navigation ) { var current = this.element.find("a").filter(o.navigationFilter);
r1797 - trunk/ui
Author: klaus.hartl Date: Sun Jan 25 15:52:49 2009 New Revision: 1797 Modified: trunk/ui/ui.tabs.js Log: Tabs: TODO check Modified: trunk/ui/ui.tabs.js ============================================================================== --- trunk/ui/ui.tabs.js (original) +++ trunk/ui/ui.tabs.js Sun Jan 25 15:52:49 2009 @@ -224,7 +224,7 @@ } // update selected after add/remove else - o.selected = this.$lis.index(this.$lis.filter('.ui-tabs-selected')); // TODO check
r1795 - in trunk: tests/unit/tabs ui
Author: klaus.hartl Date: Sun Jan 25 15:42:56 2009 New Revision: 1795 Modified: trunk/tests/unit/tabs/tabs.js trunk/ui/ui.tabs.js Log: Tabs: overall fixed selected property for all tabs unselected case (is -1 in such case), added sanity check for selected out of bound, fixes #3936 Modified: trunk/tests/unit/tabs/tabs.js ============================================================================== --- trunk/tests/unit/tabs/tabs.js (original) +++ trunk/tests/unit/tabs/tabs.js Sun Jan 25 15:42:56
r1796 - trunk/ui
Author: klaus.hartl Date: Sun Jan 25 15:47:40 2009 New Revision: 1796 Modified: trunk/ui/ui.tabs.js Log: Tabs: removed Safari 2 workaround, no longer supported Modified: trunk/ui/ui.tabs.js ============================================================================== --- trunk/ui/ui.tabs.js (original) +++ trunk/ui/ui.tabs.js Sun Jan 25 15:47:40 2009 @@ -439,14 +439,7 @@ if ($.inArray(index, o.disabled) == -1) return; - var $li = this.$lis.eq(index).removeClass('ui-state-disabled');
#3926 - Documentation should also be accessible separately from demos
<a href="http://ui.jquery.com/bugs/ticket/3926">http://ui.jquery.com/bugs/ticket/3926</a> In addition to the combined demos+docs (with demos at the top, and documentation in tabs below), it should be possible to view and navigate documentation stand-alone. This could be at urls like <a href="http://ui.jquery.com/docs/draggable">http://ui.jquery.com/docs/draggable</a> <a href="http://ui.jquery.com/docs/dialog#options">http://ui.jquery.com/docs/dialog#options</a> <a href="http://ui.jquery.com/docs/dialog#options-modal">http://ui.jquery.com/docs/dialog#options-modal</a>
r1794 - trunk/ui
Author: paul.bakaus Date: Sun Jan 25 13:20:15 2009 New Revision: 1794 Modified: trunk/ui/ui.accordion.js Log: accordion: fix for newContent/oldContent in the UI object that was pointing to the workaround wrapper (temporary, until we remove the wrapper completely) Modified: trunk/ui/ui.accordion.js ============================================================================== --- trunk/ui/ui.accordion.js (original) +++ trunk/ui/ui.accordion.js Sun Jan 25 13:20:15 2009 @@ -251,8 +251,8 @@ options:
Website changes
Hi everyone, I've spent quite a few hours on the website today, it's getting in much better shape now. Here are the changes: - removed applications folder entirely - removed 40% of rewrite rules - finished download page (dependency checks etc) - changed documentation/ links to docs/ - split the "Demos & Documentation" tab into "Demos" and "Documentation" again - "Documentation" links to docs/, which is a fully standalone 100% replica of <a href="http://docs.jquery.com">http://docs.jquery.com</a>
r1793 - branches/experimental/a11y
Author: a.farkas.pm Date: Sun Jan 25 12:29:37 2009 New Revision: 1793 Added: branches/experimental/a11y/ui.a11y.ext.js Modified: branches/experimental/a11y/getID.js Log: Some ideas for an a11y extension Modified: branches/experimental/a11y/getID.js ============================================================================== --- branches/experimental/a11y/getID.js (original) +++ branches/experimental/a11y/getID.js Sun Jan 25 12:29:37 2009 @@ -1,13 +1,16 @@ -jQuery.fn.getID = function(){ - var
r1792 - trunk/ui
Author: klaus.hartl Date: Sun Jan 25 11:07:25 2009 New Revision: 1792 Modified: trunk/ui/ui.tabs.js Log: a little cleanup Modified: trunk/ui/ui.tabs.js ============================================================================== --- trunk/ui/ui.tabs.js (original) +++ trunk/ui/ui.tabs.js Sun Jan 25 11:07:25 2009 @@ -133,7 +133,6 @@ // attach necessary classes for styling if (this.element.is('div')) { - // TODO replace hardcoded class names this.element.addClass('ui-tabs
r1791 - trunk/ui
Author: klaus.hartl Date: Sun Jan 25 10:09:52 2009 New Revision: 1791 Modified: trunk/ui/ui.tabs.js Log: Tabs: removed options from ui object, not required Modified: trunk/ui/ui.tabs.js ============================================================================== --- trunk/ui/ui.tabs.js (original) +++ trunk/ui/ui.tabs.js Sun Jan 25 10:09:52 2009 @@ -541,7 +541,6 @@ ui: function(tab, panel) { return { - options: this.options, tab: tab, panel: panel,
options object in callback required?
All, currently the ui object passed to callbacks contains the widgets options as property in Tabs. Is this really required? I remember some discussion about this but not the outcome of it... --Klaus
r1789 - trunk/demos
Author: paul.bakaus Date: Sun Jan 25 07:49:15 2009 New Revision: 1789 Modified: trunk/demos/index.html Log: demos: changed documentation absolute urls from documentation/ to docs/ Modified: trunk/demos/index.html ============================================================================== --- trunk/demos/index.html (original) +++ trunk/demos/index.html Sun Jan 25 07:49:15 2009 @@ -253,15 +253,15 @@ <dd><a href="effects_showhide/index.html">Show/Hide</a></dd> <dd><a
r1790 - trunk/demos
Author: paul.bakaus Date: Sun Jan 25 08:51:29 2009 New Revision: 1790 Modified: trunk/demos/index.html Log: demos: removed absolute doc links for cleaner separation between demo-docs / docs Modified: trunk/demos/index.html ============================================================================== --- trunk/demos/index.html (original) +++ trunk/demos/index.html Sun Jan 25 08:51:29 2009 @@ -252,16 +252,6 @@ <dd><a href="effects_feedback/index.html">Feedback</a></dd> <dd><a
r1763 - trunk/ui
Author: paul.bakaus Date: Fri Jan 23 04:52:41 2009 New Revision: 1763 Modified: trunk/ui/ui.core.js Log: core: the propagation for the mousedown has to be stopped in the mouse logic, otherwise causes much pain for nested widgets (fixes #3910) Modified: trunk/ui/ui.core.js ============================================================================== --- trunk/ui/ui.core.js (original) +++ trunk/ui/ui.core.js Fri Jan 23 04:52:41 2009 @@ -455,6 +455,11 @@ // anymore, so this fix is needed
r1788 - in trunk/tests: . static/accordion static/dialog static/selectable static/sortable visual...
Author: rdworth Date: Sun Jan 25 04:06:25 2009 New Revision: 1788 Added: trunk/tests/index.html Modified: trunk/tests/static/accordion/default.html trunk/tests/static/dialog/default.html trunk/tests/static/selectable/default.html trunk/tests/static/sortable/default.html trunk/tests/visual/accordion/default.html trunk/tests/visual/dialog/default.html trunk/tests/visual/draggable/default.html trunk/tests/visual/droppable/default.html trunk/tests/visual/selectable/default.html trunk/tests/visual/sortable/default.html
r1784 - trunk/demos
Author: rdworth Date: Sat Jan 24 06:05:00 2009 New Revision: 1784 Modified: trunk/demos/index.html Log: demos: view source cleanup Modified: trunk/demos/index.html ============================================================================== --- trunk/demos/index.html (original) +++ trunk/demos/index.html Sat Jan 24 06:05:00 2009 @@ -211,7 +211,12 @@ return false; }).end().find(">div").hide(); } - $('#demo-source code').empty().text(source);
Next Page