r800 - trunk/ui
Author: paul.bakaus Date: Wed Oct 15 04:36:42 2008 New Revision: 800 Modified: trunk/ui/ui.core.js Log: core: fixed chaining in lazy loading mechanism Modified: trunk/ui/ui.core.js ============================================================================== --- trunk/ui/ui.core.js (original) +++ trunk/ui/ui.core.js Wed Oct 15 04:36:42 2008 @@ -29,6 +29,8 @@ $.getScript(uiPath+'ui.'+name+'.js', function() { selector[name].apply(selector, args); }); + + return
r794 - trunk/demos/functional/js
Author: joern.zaefferer Date: Mon Oct 13 09:50:57 2008 New Revision: 794 Modified: trunk/demos/functional/js/behaviour.functionaldemos.js Log: functional demos: fixed remote history plugin usage Modified: trunk/demos/functional/js/behaviour.functionaldemos.js ============================================================================== --- trunk/demos/functional/js/behaviour.functionaldemos.js (original) +++ trunk/demos/functional/js/behaviour.functionaldemos.js Mon Oct 13 09:50:57 2008 @@
UI/Shadow?
This is easily findable with google: http://docs.jquery.com/UI/Shadow I can't find any trace in the repository - whats up with that? Jörn
Relative font sizes in jQuery UI themes
<div dir="ltr">Hey guys, especially Filament Group - I wanted to bring up this topic about relative font sizes. While I love your work on scalability within the themes, I think we can safely remove relative font-sizes in the next transition/release. Here are the arguments for it: 1) IE7+ supports full scaling of websites 2) FF3 supports full scaling of websites 3) Opera 9+ supports full scaling of websites The only vendor that doesn't play nice yet (except on the iPhone) is Safari. I'd love to hear
Testing defaults unnecessary?
I'm currently going through some tests, updating them for a new QUnit feature. While at it, I noticed that at least a few testsuites check that an initialized element has the correct defaults, replicating defaults within the test. Considering that there isn't really much that can go wrong with setting defaults (abstracted into widget factory), replicating all the defaults in the tests seems like a double bad idea. Any reason to keep those? Jörn
Flora Theme
We talked about deleting flora theme from trunk - it isn't done yet, is there any reason not to do it (yet)? Jörn
r798 - trunk/ui
Author: paul.bakaus Date: Tue Oct 14 03:15:48 2008 New Revision: 798 Modified: trunk/ui/ui.draggable.js Log: draggable: fixed createHelper method (thanks Nate!) Modified: trunk/ui/ui.draggable.js ============================================================================== --- trunk/ui/ui.draggable.js (original) +++ trunk/ui/ui.draggable.js Tue Oct 14 03:15:48 2008 @@ -28,7 +28,7 @@ }, - createHelper: function() { + createHelper: function(e) { var o
[patch] draggable having helper as a function
Posting here because bug tracker is down. :) Currently if you set the draggable helper option to a function it causes an exception because 'e' is not defined in createHelper. Attached patch contains fix and tests. Also, thanks for opening up the dev mailing list, its great to see what is going on behind the scenes
r797 - branches/1.7/coverflow trunk/ui
Author: paul.bakaus Date: Tue Oct 14 03:00:52 2008 New Revision: 797 Modified: branches/1.7/coverflow/ui.coverflow.js trunk/ui/ui.sortable.js Log: sortable: fixed toArray method coverflow: renamed init to _init Modified: branches/1.7/coverflow/ui.coverflow.js ============================================================================== --- branches/1.7/coverflow/ui.coverflow.js (original) +++ branches/1.7/coverflow/ui.coverflow.js Tue Oct 14 03:00:52 2008 @@ -1,7 +1,7 @@ ;(function($){ $.widget("ui.coverflow",
r790 - in trunk: tests ui
Author: rdworth Date: Wed Oct 8 03:21:28 2008 New Revision: 790 Modified: trunk/tests/draggable.js trunk/ui/ui.draggable.js Log: added some missing draggables defaults Modified: trunk/tests/draggable.js ============================================================================== --- trunk/tests/draggable.js (original) +++ trunk/tests/draggable.js Wed Oct 8 03:21:28 2008 @@ -144,7 +144,7 @@ axis: false, cancel: ":input", connectToSortable: false, - containment:
Major QUnit updates
Hi, I commited a few major QUnit updates: We now have a deep recursive assertion called "same" that compares primitive types, objects and arrays. Usage is the same as for equals, though its much more precise than equals, as it uses !== to compare primitive values, while equals uses !=. Details and examples in the documentation: http://docs.jquery.com/QUnit/same The previous compare and compare2 functions (in additiona to serialArray) are now deprecated and throw a (helpful) error when used. Credits
r796 - trunk/tests
Author: joern.zaefferer Date: Mon Oct 13 14:42:12 2008 New Revision: 796 Modified: trunk/tests/datepicker.js Log: updating tests to latest QUnit, using same, fixing a few assertions that relied on type casting (mostly null/undefined) Modified: trunk/tests/datepicker.js ============================================================================== --- trunk/tests/datepicker.js (original) +++ trunk/tests/datepicker.js Mon Oct 13 14:42:12 2008 @@ -24,7 +24,7 @@ a1[1] = (a1[1] ? new Date(a1[1].getFullYear(),
r795 - trunk/tests
Author: joern.zaefferer Date: Mon Oct 13 14:32:42 2008 New Revision: 795 Modified: trunk/tests/dialog.js trunk/tests/draggable.js trunk/tests/resizable.js trunk/tests/selectable.js trunk/tests/tabs.js Log: updating tests to latest QUnit, using same, fixing a few assertions that relied on type casting (mostly null/undefined) Modified: trunk/tests/dialog.js ============================================================================== --- trunk/tests/dialog.js (original) +++ trunk/tests/dialog.js Mon
r793 - trunk/ui
Author: joern.zaefferer Date: Mon Oct 13 08:20:26 2008 New Revision: 793 Modified: trunk/ui/ui.accordion.js Log: accordion: reset overflow to original value after animation completed, fixes some layout issues Modified: trunk/ui/ui.accordion.js ============================================================================== --- trunk/ui/ui.accordion.js (original) +++ trunk/ui/ui.accordion.js Mon Oct 13 08:20:26 2008 @@ -293,6 +293,7 @@ difference = showHeight / hideHeight, padding
Please change 404 to something useful
<div dir="ltr">Hey guys, can someone please upload a simple page that says "maintenance" or something on trac (<a href="http://ui.jquery.com/bugs">ui.jquery.com/bugs</a>)? I'm getting sick at seeing the 404, it's unprofessional. I would do it, but I'm on holiday. Thanks a lot, Paul<br clear="all"> -- Paul Bakaus UI Architect -- <a href="http://paulbakaus.com">http://paulbakaus.com</a> <a href="http://www.linkedin.com/in/paulbakaus">http://www.linkedin.com/in/paulbakaus</a> </div>
Grid for Resizables?
Hey, I was trying to add a grid on the resizables and I realized there is no option for it. I would like to request that you be able to resize things on a grid just like dragging on a grid. That would help me on the project i'm currently working on. Thank you! -- Marc Grabanski: http://marcgrabanski.com LinkedIn: http://linkedin.com/in/1Marc
Altered Dialog box
Hello all, I've adjusted the dialog box to a more appealing one and added some extra functionalities. Now you can maximize the window and you don'd have to add the extra dives for all the slides in your code. I've also added a icon in the main bar. And a status at the bottom. It only works in FF3 and Safari. It also works in the other browsers but there are still some layout issues to solve. You can find an example on http://sandbox.tinctuur.be/dialog Looking forward to the feedback. Karel-Jan P.S.:
Nested sortable tree
Hello, I've took the concept for the tree component foreseen for 1.8 and made it work just fine I think. You can have a try on: http://sandbox.tinctuur.be/tree I hope you guys have time to debug or check if it's good enough to make a final release. I've used some code from 1.6 trunk and the tree file in the 1.8 folder. I've adjusted the ui.sortable.js a bit to make it work. And I didn't need the sortIndicator option that was foreseen. Let's make a kicking ass tool together! Greetz, Karel-Jan
Nested sortable tree
Hello, I've made a sortable nested tree. I've started from the test file in the 1.8 branch. And now it woks pretty fine in all browsers. It needs some extra debugging maybe. And I hope you guys can help with that. And I hope it makes a final release soon. I used some of the 1.6b files and I altered the ui.sortable.js file a bit in order to get it to work. I didn't use the sortIndicator which was new I think. looking forward to the feedback. Kind regards, Karel-Jan
Nested sortable tree
Hello, I've took the concept for the tree component foreseen for 1.8 and made it work just fine I think. You can have a try on: http://sandbox.tinctuur.be/tree I hope you guys have time to debug or check if it's good enough to make a final release. I've used some code from 1.6 trunk and the tree file in the 1.8 folder. I've adjusted the ui.sortable.js a bit to make it work. And I didn't need the sortIndicator option that was foreseen. Let's make a kicking ass tool together! Greetz, Karel-Jan
Draggable on functional demos, scrolling
I just played around with the functional demos (added history plugin) and noticed that the draggables are rather screwed when I scroll down the page. It looks like no one ever tested with a page not scrolled to the top, which I can hardly believe. Any idea whats going on there? Jörn
r792 - in trunk/demos/functional: css templates
Author: joern.zaefferer Date: Wed Oct 8 07:51:03 2008 New Revision: 792 Modified: trunk/demos/functional/css/functional_demos.css trunk/demos/functional/templates/ui.accordion.data.html Log: improving accordion layout Modified: trunk/demos/functional/css/functional_demos.css ============================================================================== --- trunk/demos/functional/css/functional_demos.css (original) +++ trunk/demos/functional/css/functional_demos.css Wed Oct 8 07:51:03 2008 @@
r789 - in trunk: tests ui
Author: klaus.hartl Date: Wed Oct 8 03:09:55 2008 New Revision: 789 Modified: trunk/tests/tabs.js trunk/ui/ui.tabs.js Log: UI Tabs: renamed confusing "unselect" option to "deselectable" Modified: trunk/tests/tabs.js ============================================================================== --- trunk/tests/tabs.js (original) +++ trunk/tests/tabs.js Wed Oct 8 03:09:55 2008 @@ -37,7 +37,7 @@ test("defaults", function() { var expected = { - unselect: false, + deselectable:
r791 - in trunk/demos/functional: . js
Author: joern.zaefferer Date: Wed Oct 8 06:54:11 2008 New Revision: 791 Added: trunk/demos/functional/js/jquery.history_remote.js Modified: trunk/demos/functional/index.html trunk/demos/functional/js/behaviour.functionaldemos.js Log: functional demos: added history_remote plugin Modified: trunk/demos/functional/index.html ============================================================================== --- trunk/demos/functional/index.html (original) +++ trunk/demos/functional/index.html Wed Oct
r788 - trunk/ui
Author: cloudream@gmail.com Date: Tue Oct 7 19:57:20 2008 New Revision: 788 Modified: trunk/ui/ui.spinner.js Log: Spinner:missing semicolon Modified: trunk/ui/ui.spinner.js ============================================================================== --- trunk/ui/ui.spinner.js (original) +++ trunk/ui/ui.spinner.js Tue Oct 7 19:57:20 2008 @@ -279,7 +279,7 @@ window.clearTimeout(self.timeout); self.timeout = 0; } - self.timeout = window.setTimeout(function(){self._propagate('change',
r787 - branches/1.7/tests
Author: pazu2k@gmail.com Date: Tue Oct 7 11:00:54 2008 New Revision: 787 Modified: branches/1.7/tests/autocomplete.js Log: Autocomplete: Added basic tests Modified: branches/1.7/tests/autocomplete.js ============================================================================== --- branches/1.7/tests/autocomplete.js (original) +++ branches/1.7/tests/autocomplete.js Tue Oct 7 11:00:54 2008 @@ -23,7 +23,7 @@ test("destroy", function() { expect(6); - $("#autocomplete").autocomplete().autocomplete("destroy");
r786 - trunk/ui
Author: pazu2k@gmail.com Date: Tue Oct 7 03:33:32 2008 New Revision: 786 Modified: trunk/ui/ui.spinner.js Log: Spinner: fixed incremental:false issue on mousedown (thanks cloudream) Modified: trunk/ui/ui.spinner.js ============================================================================== --- trunk/ui/ui.spinner.js (original) +++ trunk/ui/ui.spinner.js Tue Oct 7 03:33:32 2008 @@ -209,7 +209,7 @@ if (isNaN(this._getValue())) { this._setValue(this.options.start); }
r785 - trunk/tests
Author: klaus.hartl Date: Mon Oct 6 14:35:32 2008 New Revision: 785 Modified: trunk/tests/tabs.js Log: UI Tabs: fixed queued tests, review Modified: trunk/tests/tabs.js ============================================================================== --- trunk/tests/tabs.js (original) +++ trunk/tests/tabs.js Mon Oct 6 14:35:32 2008 @@ -3,12 +3,14 @@ */ (function($) { +// need to wait a bit for the pseudo animation... function defer(defered, ms) { - // wait a bit for the pseudo animation...
r784 - in trunk: tests ui
Author: pazu2k@gmail.com Date: Mon Oct 6 10:20:57 2008 New Revision: 784 Modified: trunk/tests/spinner.js trunk/ui/ui.spinner.js Log: Spinner: add group and point options for improved support for international numeric formats and added test case. Modified: trunk/tests/spinner.js ============================================================================== --- trunk/tests/spinner.js (original) +++ trunk/tests/spinner.js Mon Oct 6 10:20:57 2008 @@ -56,7 +56,7 @@ }); test("defaults", function()
r783 - in trunk: tests ui
Author: klaus.hartl Date: Mon Oct 6 04:41:48 2008 New Revision: 783 Modified: trunk/tests/tabs.html trunk/tests/tabs.js trunk/ui/ui.tabs.js Log: UI Tabs: fixed removal of inline styles set for a tab panel Modified: trunk/tests/tabs.html ============================================================================== --- trunk/tests/tabs.html (original) +++ trunk/tests/tabs.html Mon Oct 6 04:41:48 2008 @@ -36,35 +36,21 @@ <div id="tabs1"> <ul> - <li><a
r782 - trunk/tests
Author: klaus.hartl Date: Mon Oct 6 04:37:51 2008 New Revision: 782 Modified: trunk/tests/all.html trunk/tests/all_2.html Log: added tabs to test overview Modified: trunk/tests/all.html ============================================================================== --- trunk/tests/all.html (original) +++ trunk/tests/all.html Mon Oct 6 04:37:51 2008 @@ -21,6 +21,7 @@ <script type="text/javascript" src="qunit/testrunner.js"></script> <script type="text/javascript" src="simulate/jquery.simulate.js"></script>
r781 - trunk/ui
Author: joern.zaefferer Date: Sun Oct 5 11:32:34 2008 New Revision: 781 Modified: trunk/ui/effects.core.js Log: adding version property to all ui components Modified: trunk/ui/effects.core.js ============================================================================== --- trunk/ui/effects.core.js (original) +++ trunk/ui/effects.core.js Sun Oct 5 11:32:34 2008 @@ -12,6 +12,7 @@ $.effects = $.effects || {}; //Add the 'effects' scope $.extend($.effects, { + version: "@VERSION", save:
Versioning
One of the points on Scott's list was: All UI plugins must have a property that exposes the plugin version. This must be done before the 1.6 release. Where should that property to? To $.ui.component.version? $.ui.fn.component.version? Can this be done with "@VERSION"? Jörn
r780 - trunk/ui
Author: joern.zaefferer Date: Sun Oct 5 11:31:44 2008 New Revision: 780 Modified: trunk/ui/ui.slider.js Log: adding version property to all ui components Modified: trunk/ui/ui.slider.js ============================================================================== --- trunk/ui/ui.slider.js (original) +++ trunk/ui/ui.slider.js Sun Oct 5 11:31:44 2008 @@ -439,12 +439,14 @@ } }); -$.ui.slider.getter = "value"; - -$.ui.slider.defaults = { - handle: ".ui-slider-handle", - distance: 1,
r779 - trunk/ui
Author: joern.zaefferer Date: Sun Oct 5 09:29:21 2008 New Revision: 779 Modified: trunk/ui/ui.accordion.js trunk/ui/ui.colorpicker.js trunk/ui/ui.core.js trunk/ui/ui.datepicker.js trunk/ui/ui.dialog.js trunk/ui/ui.draggable.js trunk/ui/ui.droppable.js trunk/ui/ui.magnifier.js trunk/ui/ui.progressbar.js trunk/ui/ui.resizable.js trunk/ui/ui.selectable.js trunk/ui/ui.sortable.js trunk/ui/ui.spinner.js trunk/ui/ui.tabs.js Log: adding version property to all ui components Modified: trunk/ui/ui.accordion.js
r778 - trunk/demos/functional/templates
Author: joern.zaefferer Date: Sun Oct 5 07:06:03 2008 New Revision: 778 Modified: trunk/demos/functional/templates/ui.accordion.data.html trunk/demos/functional/templates/ui.accordion.html Log: accordion functional demo: fixes to work with default theme Modified: trunk/demos/functional/templates/ui.accordion.data.html ============================================================================== --- trunk/demos/functional/templates/ui.accordion.data.html (original) +++ trunk/demos/functional/templates/ui.accordion.data.html Sun
r777 - trunk/ui
Author: joern.zaefferer Date: Sun Oct 5 07:05:31 2008 New Revision: 777 Modified: trunk/ui/ui.accordion.js Log: accordion: remove selectedClass and generated spans on destroy Modified: trunk/ui/ui.accordion.js ============================================================================== --- trunk/ui/ui.accordion.js (original) +++ trunk/ui/ui.accordion.js Sun Oct 5 07:05:31 2008 @@ -78,11 +78,15 @@ }); }, destroy: function() { + this.options.headers.parent().andSelf().removeClass(this.options.selectedClass);
r776 - in trunk/demos/functional: . templates
Author: joern.zaefferer Date: Sun Oct 5 06:46:18 2008 New Revision: 776 Modified: trunk/demos/functional/index.html trunk/demos/functional/templates/ui.accordion.data.html Log: Cleaning up functional demos, getting rid of the rest of flora theme Modified: trunk/demos/functional/index.html ============================================================================== --- trunk/demos/functional/index.html (original) +++ trunk/demos/functional/index.html Sun Oct 5 06:46:18 2008 @@ -16,8 +16,6
r775 - trunk/themes/flora
Author: joern.zaefferer Date: Sun Oct 5 06:38:16 2008 New Revision: 775 Removed: trunk/themes/flora/ Log: Removing flora theme in favor of themeroller-based default theme
Animations
Hi, animations were barely discussed so far. Apart from the question which other widgets could support animations, the more interesting question is how to implement them. To start, I want to show how the accordion allows a user to add custom animations and use them: To add a custom animation, you add a function to $.ui.accordion.animations, and usually use the default animation while customizing options: $.ui.accordion.animations.myCustomAnimation = function(options) { this.slide(options, { easing:
Next Page