diff options
author | Felix Nagel <info@felixnagel.com> | 2011-02-16 21:49:04 +0100 |
---|---|---|
committer | Felix Nagel <info@felixnagel.com> | 2011-02-16 21:49:04 +0100 |
commit | 05f7c614504eedcb86ca9e8971f9b58b896b6a0e (patch) | |
tree | 0e0e2e874069edb188f269853a147df3f63f867f | |
parent | 7c288f9fd97746cf75ff9576bb0cf2a39b049e36 (diff) | |
download | jquery-ui-05f7c614504eedcb86ca9e8971f9b58b896b6a0e.tar.gz jquery-ui-05f7c614504eedcb86ca9e8971f9b58b896b6a0e.zip |
updated: some comments
-rw-r--r-- | ui/jquery.ui.selectmenu.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/jquery.ui.selectmenu.js b/ui/jquery.ui.selectmenu.js index 57669d494..d1a41fe02 100644 --- a/ui/jquery.ui.selectmenu.js +++ b/ui/jquery.ui.selectmenu.js @@ -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); |