]> source.dussan.org Git - jquery-ui.git/commitdiff
updated: some comments
authorFelix Nagel <info@felixnagel.com>
Wed, 16 Feb 2011 20:49:04 +0000 (21:49 +0100)
committerFelix Nagel <info@felixnagel.com>
Wed, 16 Feb 2011 20:49:04 +0000 (21:49 +0100)
ui/jquery.ui.selectmenu.js

index 57669d49460bfef7b36271d6bbbfca8353c83a63..d1a41fe02b173957975c71811ad261da83d92a0f 100644 (file)
@@ -149,7 +149,7 @@ $.widget("ui.selectmenu", {
                        .bind("click.selectmenu", function() {
                                self._refreshValue();
                        })
-                       // newelement can be null under unclear circumstances in IE8 
+                       // FIXME: newelement can be null under unclear circumstances in IE8 
                        .bind("focus.selectmenu", function() {
                                if (this.newelement) {
                                        this.newelement[0].focus();
@@ -629,7 +629,7 @@ $.widget("ui.selectmenu", {
 
        value: function(newValue) {
                if (arguments.length) {
-                       // FIXME test for number is a kind of legacy support, could be removed at any time (Dez. 2010)
+                       // FIXME test for number is a kind of legacy support, will be remoced in v1.1
                        // see this post for more info: https://github.com/fnagel/jquery-ui/issues#issue/33
                        if (typeof newValue == "number") {
                                        this.index(newValue);