Commit 1a450ee7 authored by David Stutz's avatar David Stutz

#167 dirty fix.

parent 91474950
...@@ -579,7 +579,9 @@ ...@@ -579,7 +579,9 @@
// Get all selected options. // Get all selected options.
getSelected: function() { getSelected: function() {
return $('option:selected[value!="' + this.options.selectAllValue + '"]', this.$select); return $('option[value!="' + this.options.selectAllValue + '"]', this.$select).filter(function() {
return $(this).attr('selected');
});
}, },
// Get the corresponding option by ts value. // Get the corresponding option by ts value.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment