diff options
author | Felix Nagel <info@felixnagel.com> | 2012-05-16 22:19:24 +0200 |
---|---|---|
committer | Felix Nagel <info@felixnagel.com> | 2012-05-17 16:02:39 +0200 |
commit | 1a160354262253a2cfae05129a9cbebb6bd6ba11 (patch) | |
tree | b94b8c8872c5d87004bf838980eeb2046a6a4640 | |
parent | 5c55c87210dfa436a5e3ec9d22f43f6369bbb43e (diff) | |
download | jquery-ui-1a160354262253a2cfae05129a9cbebb6bd6ba11.tar.gz jquery-ui-1a160354262253a2cfae05129a9cbebb6bd6ba11.zip |
updated: readme file, copyright notice and version
-rw-r--r-- | readme | 5 | ||||
-rw-r--r-- | ui/jquery.ui.selectmenu.js | 7 |
2 files changed, 7 insertions, 5 deletions
@@ -10,10 +10,9 @@ http://filamentgroup.com/lab/jquery_ui_selectmenu_an_aria_accessible_plugin_for_ There is a new UI 1.9.x compatible, built from scratch version, please see issue #140. DOWNLOAD -Latest version: https://github.com/fnagel/jquery-ui/zipball/selectmenu -Stable version (v1.2.0): https://github.com/fnagel/jquery-ui/zipball/selectmenu_v1.2.0 +Latest version: https://github.com/fnagel/jquery-ui/zipball/selectmenu (1.7.2 and jQuery UI 1.8.20) +Stable version (v1.2.1): https://github.com/fnagel/jquery-ui/zipball/selectmenu_v1.2.1 (1.6.4 and jQuery UI 1.8.17) -Both versions come with jQuery 1.6.2 and jQuery UI 1.8.16. SUPPORT Please use GitHub issues for bug tracking and take a look at the Wiki at: diff --git a/ui/jquery.ui.selectmenu.js b/ui/jquery.ui.selectmenu.js index 811ec6711..ce08e2bc3 100644 --- a/ui/jquery.ui.selectmenu.js +++ b/ui/jquery.ui.selectmenu.js @@ -1,7 +1,8 @@ /* - * jQuery UI selectmenu dev version * jQuery UI selectmenu 1.2.1 version + * jQuery UI selectmenu 1.3.0pre version * - * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) + * Copyright (c) 2009-2010 filament group, http://filamentgroup.com + * Copyright (c) 2010-2012 Felix Nagel, http://www.felixnagel.com * Dual licensed under the MIT (MIT-LICENSE.txt) * and GPL (GPL-LICENSE.txt) licenses. * @@ -561,6 +562,8 @@ $.widget("ui.selectmenu", { if ( self.newelement.attr("aria-disabled") != 'true' ) { self._closeOthers(event); self.newelement.addClass('ui-state-active'); + + self.listWrap.appendTo( o.appendTo ); self.list.attr('aria-hidden', false); self.listWrap.addClass( self.widgetBaseClass + '-open' ); |