File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 108
108
// index of option tag to be selected
109
109
var oldIndex = self . select [ 0 ] . selectedIndex ,
110
110
newIndex = self . list . find ( "li:not(.ui-li-divider)" ) . index ( this ) ,
111
- option = self . optionElems . eq ( newIndex ) [ 0 ] ;
111
+ option = self . selectOptions . eq ( newIndex ) [ 0 ] ;
112
112
113
113
// toggle selected status on the tag for multi selects
114
114
option . selected = self . isMultiple ? ! option . selected : true ;
206
206
var self = this ,
207
207
select = this . element ,
208
208
isMultiple = this . isMultiple ,
209
- options = this . optionElems = select . find ( "option" ) ,
209
+ options = this . selectOptions = select . find ( "option" ) ,
210
210
selected = this . selected ( ) ,
211
211
// return an array of all selected index's
212
212
indicies = this . selectedIndices ( ) ;
You can’t perform that action at this time.
0 commit comments