r1485 - in trunk: demos demos/accordion demos/datepicker demos/dialog demos/draggable demos/dropp...
Author: scott.gonzalez Date: Fri Jan 2 20:56:50 2009 New Revision: 1485 Modified: trunk/demos/accordion/collapsible.html trunk/demos/accordion/custom_icons.html trunk/demos/accordion/default.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/date_formats.html trunk/demos/datepicker/default.html trunk/demos/datepicker/dropdown_month_year.html trunk/demos/datepicker/icon_trigger.html
r1487 - trunk/ui
Author: scott.gonzalez Date: Fri Jan 2 21:42:21 2009 New Revision: 1487 Modified: trunk/ui/ui.draggable.js Log: Draggable: Partial fix for #3726: Using this._trigger() instead of this.element.triggerHandler(). Modified: trunk/ui/ui.draggable.js ============================================================================== --- trunk/ui/ui.draggable.js (original) +++ trunk/ui/ui.draggable.js Fri Jan 2 21:42:21 2009 @@ -340,7 +340,8 @@ _propagate: function(n, event) { $.ui.plugin.call(this,
r1490 - trunk/ui
Author: scott.gonzalez Date: Fri Jan 2 21:55:13 2009 New Revision: 1490 Modified: trunk/ui/ui.dialog.js Log: Dialog: Fixed #3753: Cleaned ui hash in callbacks. Modified: trunk/ui/ui.dialog.js ============================================================================== --- trunk/ui/ui.dialog.js (original) +++ trunk/ui/ui.dialog.js Fri Jan 2 21:55:13 2009 @@ -161,7 +161,7 @@ }, close: function() { - if (false === this._trigger('beforeclose', null, { options: this.options }))
r1488 - trunk/ui
Author: scott.gonzalez Date: Fri Jan 2 21:48:46 2009 New Revision: 1488 Modified: trunk/ui/ui.selectable.js Log: Selectable: Fixed #3729: Use this._trigger for all callbacks. Modified: trunk/ui/ui.selectable.js ============================================================================== --- trunk/ui/ui.selectable.js (original) +++ trunk/ui/ui.selectable.js Fri Jan 2 21:48:46 2009 @@ -74,10 +74,10 @@ this.selectees = $(options.filter, this.element[0]); // selectable START callback
r1482 - trunk/ui
Author: scott.gonzalez Date: Fri Jan 2 20:38:20 2009 New Revision: 1482 Modified: trunk/ui/ui.core.js Log: Widget factory: Updated ._trigger to use new event system in jQuery 1.3. Modified: trunk/ui/ui.core.js ============================================================================== --- trunk/ui/ui.core.js (original) +++ trunk/ui/ui.core.js Fri Jan 2 20:38:20 2009 @@ -372,10 +372,17 @@ }, _trigger: function(type, event, data) { - var eventName = (type == this.widgetEventPrefix
r1481 - trunk
Author: scott.gonzalez Date: Fri Jan 2 20:12:50 2009 New Revision: 1481 Modified: trunk/jquery-1.3pre.js Log: Updated jQuery 1.3pre to r6026. Modified: trunk/jquery-1.3pre.js ============================================================================== --- trunk/jquery-1.3pre.js (original) +++ trunk/jquery-1.3pre.js Fri Jan 2 20:12:50 2009 @@ -6,8 +6,8 @@ * Dual licensed under the MIT (MIT-LICENSE.txt) * and GPL (GPL-LICENSE.txt) licenses. * - * $Date: 2008-12-31 14:21:24 -0500 (Wed, 31 Dec
r1483 - trunk/ui
Author: scott.gonzalez Date: Fri Jan 2 20:42:23 2009 New Revision: 1483 Modified: trunk/ui/ui.core.js Log: Core: Changed $.ui.contains to use the same logic as jQuery's internal contains function. Modified: trunk/ui/ui.core.js ============================================================================== --- trunk/ui/ui.core.js (original) +++ trunk/ui/ui.core.js Fri Jan 2 20:42:23 2009 @@ -38,15 +38,9 @@ }, contains: function(a, b) { - var safari2 = $.browser.safari && $.browser.version
r1484 - trunk/ui
Author: scott.gonzalez Date: Fri Jan 2 20:45:12 2009 New Revision: 1484 Modified: trunk/ui/ui.core.js Log: Core: Cleaned up warnings. Modified: trunk/ui/ui.core.js ============================================================================== --- trunk/ui/ui.core.js (original) +++ trunk/ui/ui.core.js Fri Jan 2 20:45:12 2009 @@ -463,7 +463,8 @@ // preventDefault() is used to prevent the selection of text here - // however, in Safari, this causes select boxes not to be selectable
Resizable ghost
Hi, resizables with "ghost" enabled doesn't work well. The problem is the size calculation when the node that should be resized has a padding. I tried to fix the root cause of the problem, but the resizable code is too complex for me to understand all side effects a change might have. Therefore it's more like a hot-fix: http://ui.jquery.com/bugs/ticket/3719 The resizing is quite slow, therefore most JavaScript libraries only display a border when resizing. I'd like to to see an option that has a
r1480 - in trunk/themes: base default
Author: rdworth Date: Fri Jan 2 18:22:33 2009 New Revision: 1480 Modified: trunk/themes/base/ui.theme.css trunk/themes/default/ui.theme.css Log: fixed #3741 - ui.theme.css should not contain border-radius properties Modified: trunk/themes/base/ui.theme.css ============================================================================== --- trunk/themes/base/ui.theme.css (original) +++ trunk/themes/base/ui.theme.css Fri Jan 2 18:22:33 2009 @@ -223,16 +223,16 @@ ----------------------------------*/
r1473 - trunk
Author: scott.gonzalez Date: Fri Jan 2 07:31:50 2009 New Revision: 1473 Added: trunk/jquery-1.3pre.js Log: Added jQuery 1.3pre (r6018). Added: trunk/jquery-1.3pre.js ============================================================================== --- (empty file) +++ trunk/jquery-1.3pre.js Fri Jan 2 07:31:50 2009 @@ -0,0 +1,4158 @@ +(function(){ +/* + * jQuery 1.3b2pre - New Wave Javascript + * + * Copyright (c) 2008 John Resig (jquery.com) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and
r1472 - trunk/demos
Author: pazu2k@gmail.com Date: Fri Jan 2 06:54:25 2009 New Revision: 1472 Modified: trunk/demos/index.html Log: demos/index.html - added fade in/out effect to demo notes. Modified: trunk/demos/index.html ============================================================================== --- trunk/demos/index.html (original) +++ trunk/demos/index.html Fri Jan 2 06:54:25 2009 @@ -108,7 +108,7 @@ $(this).parents('ul').find('li').removeClass('demo-config-on');
r1479 - branches/experimental/tabbable
Author: scott.gonzalez Date: Fri Jan 2 08:47:42 2009 New Revision: 1479 Modified: branches/experimental/tabbable/ui.core.js Log: Tabbable: Added support for using .setFocus() and an element that isn't already focusable. Modified: branches/experimental/tabbable/ui.core.js ============================================================================== --- branches/experimental/tabbable/ui.core.js (original) +++ branches/experimental/tabbable/ui.core.js Fri Jan 2 08:47:42 2009 @@ -39,8 +39,9 @@
r1477 - branches/experimental/tabbable
Author: scott.gonzalez Date: Fri Jan 2 08:43:58 2009 New Revision: 1477 Modified: branches/experimental/tabbable/ui.core.js Log: Tabbable: Added support for setting tabindex. Modified: branches/experimental/tabbable/ui.core.js ============================================================================== --- branches/experimental/tabbable/ui.core.js (original) +++ branches/experimental/tabbable/ui.core.js Fri Jan 2 08:43:58 2009 @@ -8,7 +8,7 @@ $.attr = function(elem, key, value) { if (/tabindex/i.test(key))
r1474 - trunk/demos/datepicker
Author: pazu2k@gmail.com Date: Fri Jan 2 07:36:40 2009 New Revision: 1474 Modified: trunk/demos/datepicker/localization.html Log: demos/datepicker/localization.html - replaced special character symbols with equivalent html entities. Modified: trunk/demos/datepicker/localization.html ============================================================================== --- trunk/demos/datepicker/localization.html (original) +++ trunk/demos/datepicker/localization.html Fri Jan 2 07:36:40 2009 @@ -65,38
r1476 - branches/experimental/tabbable
Author: scott.gonzalez Date: Fri Jan 2 08:39:29 2009 New Revision: 1476 Modified: branches/experimental/tabbable/ui.core.js Log: Tabbable: Refactored implementation a bit. Modified: branches/experimental/tabbable/ui.core.js ============================================================================== --- branches/experimental/tabbable/ui.core.js (original) +++ branches/experimental/tabbable/ui.core.js Fri Jan 2 08:39:29 2009 @@ -1,25 +1,23 @@ (function($) { -// temporary hack to proxy $.attr
r1478 - trunk/ui
Author: pazu2k@gmail.com Date: Fri Jan 2 08:45:35 2009 New Revision: 1478 Modified: trunk/ui/ui.datepicker.js Log: datepicker: added a span wrapper to disabled dates for better styling of unselectable days when setting min/max values. Modified: trunk/ui/ui.datepicker.js ============================================================================== --- trunk/ui/ui.datepicker.js (original) +++ trunk/ui/ui.datepicker.js Fri Jan 2 08:45:35 2009 @@ -1386,7 +1386,7 @@ (unselectable
r1475 - trunk/demos
Author: pazu2k@gmail.com Date: Fri Jan 2 07:59:31 2009 New Revision: 1475 Modified: trunk/demos/index.html Log: demos/index.html - changed content-type to utf-8 to support datepickers in other languages. Modified: trunk/demos/index.html ============================================================================== --- trunk/demos/index.html (original) +++ trunk/demos/index.html Fri Jan 2 07:59:31 2009 @@ -2,6 +2,7 @@ <!doctype html> <html lang="en"> <head> + <meta http-equiv="Content-Type"
r1468 - trunk/ui
Author: rdworth Date: Fri Jan 2 05:06:30 2009 New Revision: 1468 Modified: trunk/ui/ui.core.js Log: Reverted r1461 Modified: trunk/ui/ui.core.js ============================================================================== --- trunk/ui/ui.core.js (original) +++ trunk/ui/ui.core.js Fri Jan 2 05:06:30 2009 @@ -375,10 +375,7 @@ var eventName = (type == this.widgetEventPrefix ? type : this.widgetEventPrefix + type); event = event || $.event.fix({ type: eventName, target:
r1471 - trunk/demos
Author: pazu2k@gmail.com Date: Fri Jan 2 05:45:18 2009 New Revision: 1471 Modified: trunk/demos/index.html Log: demos/index.html - fixed resetDemos function so year follows month by default. Modified: trunk/demos/index.html ============================================================================== --- trunk/demos/index.html (original) +++ trunk/demos/index.html Fri Jan 2 05:45:18 2009 @@ -165,8 +165,8 @@ } function resetDemos() { - $.datepicker.setDefaults($.datepicker.regional['']);
r1469 - trunk/demos
Author: pazu2k@gmail.com Date: Fri Jan 2 05:17:54 2009 New Revision: 1469 Modified: trunk/demos/index.html Log: demos/index.html - fixed issue with browser refresh picking up wrong hash value. Added a resetDemo function to reset datepicker so it picks up default values rather than localized values. Modified: trunk/demos/index.html ============================================================================== --- trunk/demos/index.html (original) +++ trunk/demos/index.html Fri Jan 2 05:17:54
r1467 - trunk/demos
Author: pazu2k@gmail.com Date: Fri Jan 2 04:20:10 2009 New Revision: 1467 Modified: trunk/demos/index.html Log: demos/index.html - mapped #widget to #widget|default. Modified: trunk/demos/index.html ============================================================================== --- trunk/demos/index.html (original) +++ trunk/demos/index.html Fri Jan 2 04:20:10 2009 @@ -80,6 +80,9 @@ }); if (window.location.hash) { + if (window.location.hash.indexOf('|') ===
r1466 - trunk/demos
Author: pazu2k@gmail.com Date: Fri Jan 2 04:10:16 2009 New Revision: 1466 Modified: trunk/demos/demos.css trunk/demos/index.html Log: demos/index.html - removed iframe and replaced with Ajax. Added datepicker localization scripts. Fixed css font sizing issues in demo notes. Modified: trunk/demos/demos.css ============================================================================== --- trunk/demos/demos.css (original) +++ trunk/demos/demos.css Fri Jan 2 04:10:16 2009 @@ -2,7 +2,6 @@ font-size:
r1465 - trunk/demos/datepicker
Author: rdworth Date: Thu Jan 1 20:33:11 2009 New Revision: 1465 Added: trunk/demos/datepicker/localization.html (contents, props changed) - copied, changed from r1464, /trunk/demos/datepicker/localisation.html Removed: trunk/demos/datepicker/localisation.html Modified: trunk/demos/datepicker/index.html Log: spelling of localization (yes, I see the irony) Modified: trunk/demos/datepicker/index.html ============================================================================== --- trunk/demos/datepicker/index.html (original)
r1464 - trunk/demos/datepicker
Author: rdworth Date: Thu Jan 1 19:56:06 2009 New Revision: 1464 Modified: trunk/demos/datepicker/alt_field.html (contents, props changed) trunk/demos/datepicker/date_formats.html (contents, props changed) trunk/demos/datepicker/icon_trigger.html (contents, props changed) trunk/demos/datepicker/localisation.html (contents, props changed) trunk/demos/datepicker/min_max.html (contents, props changed) Log: mime-type and eol-style Modified: trunk/demos/datepicker/alt_field.html ==============================================================================
r1463 - trunk/tests
Author: kbwood.au Date: Thu Jan 1 18:13:34 2009 New Revision: 1463 Modified: trunk/tests/datepicker.js Log: Corrected tests after latest changes Modified: trunk/tests/datepicker.js ============================================================================== --- trunk/tests/datepicker.js (original) +++ trunk/tests/datepicker.js Thu Jan 1 18:13:34 2009 @@ -738,14 +738,21 @@ var dp = $('#ui-datepicker-div'); var inp = init('#inp'); // Year range + var genRange = function(start,
r1461 - trunk/ui
Author: scott.gonzalez Date: Thu Jan 1 08:12:18 2009 New Revision: 1461 Modified: trunk/ui/ui.core.js Log: Widget Factory: Fixed #3720: Removed use of extra function in jQuery.trigger. Modified: trunk/ui/ui.core.js ============================================================================== --- trunk/ui/ui.core.js (original) +++ trunk/ui/ui.core.js Thu Jan 1 08:12:18 2009 @@ -375,7 +375,10 @@ var eventName = (type == this.widgetEventPrefix ? type : this.widgetEventPrefix
r1459 - tags/testing
Author: rdworth Date: Thu Jan 1 05:15:11 2009 New Revision: 1459 Removed: tags/testing/ Log: deleted testing tag to update to 1.6rc4
r1460 - tags/testing
Author: rdworth Date: Thu Jan 1 05:17:25 2009 New Revision: 1460 Added: tags/testing/ - copied from r1458, /tags/1.6rc4/ Log: updated testing tag as 1.6rc4
r1458 - in tags/1.6rc4/ui: . i18n minified minified/i18n packed packed/i18n
Author: rdworth Date: Thu Jan 1 05:08:47 2009 New Revision: 1458 Added: tags/1.6rc4/ui/i18n/jquery.ui.i18n.all.js tags/1.6rc4/ui/jquery.ui.all.js tags/1.6rc4/ui/minified/ tags/1.6rc4/ui/minified/effects.blind.min.js tags/1.6rc4/ui/minified/effects.bounce.min.js tags/1.6rc4/ui/minified/effects.clip.min.js tags/1.6rc4/ui/minified/effects.core.min.js tags/1.6rc4/ui/minified/effects.drop.min.js tags/1.6rc4/ui/minified/effects.explode.min.js tags/1.6rc4/ui/minified/effects.fold.min.js tags/1.6rc4/ui/minified/effects.highlight.min.js
r1457 - in tags/1.6rc4/tests: . plugins plugins/cookie qunit
Author: rdworth Date: Thu Jan 1 05:06:28 2009 New Revision: 1457 Added: tags/1.6rc4/tests/plugins/cookie/ tags/1.6rc4/tests/plugins/cookie/jquery.cookie.js tags/1.6rc4/tests/plugins/cookie/jquery.cookie.min.js tags/1.6rc4/tests/plugins/cookie/jquery.cookie.pack.js tags/1.6rc4/tests/plugins/cookie/jquery.cookie.zip (contents, props changed) tags/1.6rc4/tests/qunit/ tags/1.6rc4/tests/qunit/testrunner.js tags/1.6rc4/tests/qunit/testsuite.css Modified: tags/1.6rc4/tests/ (props changed) tags/1.6rc4/tests/plugins/
r1456 - branches/1.6rc4
Author: rdworth Date: Thu Jan 1 05:00:52 2009 New Revision: 1456 Removed: branches/1.6rc4/ Log: deleted 1.6rc4 branch
r1453 - branches/1.6rc4/ui
Author: rdworth Date: Thu Jan 1 04:51:38 2009 New Revision: 1453 Modified: branches/1.6rc4/ui/ui.datepicker.js Log: merged r1450 and r1451 to 1.6rc4 Modified: branches/1.6rc4/ui/ui.datepicker.js ============================================================================== --- branches/1.6rc4/ui/ui.datepicker.js (original) +++ branches/1.6rc4/ui/ui.datepicker.js Thu Jan 1 04:51:38 2009 @@ -1383,8 +1383,8 @@ ' ' + this._currentClass : '') + // highlight selected day
r1454 - branches/1.6rc4
Author: rdworth Date: Thu Jan 1 04:52:12 2009 New Revision: 1454 Modified: branches/1.6rc4/version.txt Log: set version.txt in 1.6rc4 branch Modified: branches/1.6rc4/version.txt ============================================================================== --- branches/1.6rc4/version.txt (original) +++ branches/1.6rc4/version.txt Thu Jan 1 04:52:12 2009 @@ -1 +1 @@ -1.6rc3 \ No newline at end of file +1.6rc4 \ No newline at end of file
r1455 - tags/1.6rc4
Author: rdworth Date: Thu Jan 1 04:58:39 2009 New Revision: 1455 Added: tags/1.6rc4/ - copied from r1454, /branches/1.6rc4/ Log: tagged branches/1.6rc4 r1454 as tags/1.6rc4
r1452 - branches/1.6rc4
Author: rdworth Date: Thu Jan 1 04:49:42 2009 New Revision: 1452 Added: branches/1.6rc4/ - copied from r1440, /trunk/ Log: branched trunk r1440 as 1.6rc4
r1451 - trunk/ui
Author: rdworth Date: Thu Jan 1 04:42:10 2009 New Revision: 1451 Modified: trunk/ui/ui.datepicker.js Log: Re-fixed #3709 - Datepicker: clicking on a date causes the browser to follow '#' anchor This time it works in IE Modified: trunk/ui/ui.datepicker.js ============================================================================== --- trunk/ui/ui.datepicker.js (original) +++ trunk/ui/ui.datepicker.js Thu Jan 1 04:42:10 2009 @@ -1384,7 +1384,7 @@ (printDate.getTime()
r1450 - trunk/ui
Author: rdworth Date: Thu Jan 1 04:38:08 2009 New Revision: 1450 Modified: trunk/ui/ui.datepicker.js Log: reverted r1414 as it doesn't work in IE Modified: trunk/ui/ui.datepicker.js ============================================================================== --- trunk/ui/ui.datepicker.js (original) +++ trunk/ui/ui.datepicker.js Thu Jan 1 04:38:08 2009 @@ -1383,7 +1383,7 @@ ' ' + this._currentClass : '') + // highlight selected day (printDate.getTime()
r1414 - trunk/ui
Author: rdworth Date: Wed Dec 31 09:23:10 2008 New Revision: 1414 Modified: trunk/ui/ui.datepicker.js Log: Fixed #3709 - Datepicker: clicking on a date causes the browser to follow '#' anchor Modified: trunk/ui/ui.datepicker.js ============================================================================== --- trunk/ui/ui.datepicker.js (original) +++ trunk/ui/ui.datepicker.js Wed Dec 31 09:23:10 2008 @@ -1383,7 +1383,7 @@ ' ' + this._currentClass : '') + // highlight
r1448 - trunk/ui
Author: scott.gonzalez Date: Wed Dec 31 19:07:52 2008 New Revision: 1448 Modified: trunk/ui/ui.core.js Log: Core: Changed parameter names for selectors. Modified: trunk/ui/ui.core.js ============================================================================== --- trunk/ui/ui.core.js (original) +++ trunk/ui/ui.core.js Wed Dec 31 19:07:52 2008 @@ -209,34 +209,34 @@ //Additional selectors $.extend($.expr[':'], { - data: function(a, i, m) { - return !!$.data(a, m[3]); + data: function(elem,
Next Page