Author: sevein
Date: Mon Jun 4 21:32:07 2012
New Revision: 11730
Log:
Stop using :enabled because it does not work in the latests Chrome releases,
fixes issue 2348.
Modified:
trunk/js/autocomplete.js
Modified: trunk/js/autocomplete.js
==============================================================================
--- trunk/js/autocomplete.js Mon Jun 4 20:14:33 2012 (r11729)
+++ trunk/js/autocomplete.js Mon Jun 4 21:32:07 2012 (r11730)
@@ -125,7 +125,8 @@
// items
var dataSource = new YAHOO.util.LocalDataSource();
- $('option:enabled', this).each(function ()
+ // :enabled was removed because it stopped working in
Chrome
+ $('option', this).each(function ()
{
if ($(this).val())
{
--
You received this message because you are subscribed to the Google Groups
"Qubit Toolkit Commits" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/qubit-commits?hl=en.