change source of select, fixes

This commit is contained in:
vitalets
2013-01-08 14:23:38 +04:00
parent f06b5c4d01
commit 939e0dba51
6 changed files with 65 additions and 3 deletions

@ -199,6 +199,11 @@ Makes editable any HTML element on the page. Applied as jQuery method.
//transfer new option to container!
if(this.container) {
this.container.option(key, value);
} else {
//pass option to input directly
if(this.input.option) {
this.input.option(key, value);
}
}
},