소스 검색

Restore previously selected option when updating a drop-down list.

Roberto Agostino Vitillo 12 년 전
부모
커밋
40e10d801e
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      editor/js/libs/ui.js

+ 3 - 0
editor/js/libs/ui.js

@@ -267,6 +267,7 @@ UI.Select.prototype.setMultiple = function ( boolean ) {
 };
 
 UI.Select.prototype.setOptions = function ( options ) {
+  var selected = this.dom.value;
 
 	while ( this.dom.children.length > 0 ) {
 
@@ -283,6 +284,8 @@ UI.Select.prototype.setOptions = function ( options ) {
 
 	}
 
+  this.dom.value = selected;
+
 	return this;
 
 };