assets/js/romo/select_dropdown.js in romo-0.19.6 vs assets/js/romo/select_dropdown.js in romo-0.19.7
- old
+ new
@@ -29,10 +29,18 @@
RomoSelectDropdown.prototype.popupElem = function() {
return this.romoOptionListDropdown.popupElem();
}
+RomoSelectDropdown.prototype.popupOpen = function() {
+ return this.romoOptionListDropdown.popupOpen();
+}
+
+RomoSelectDropdown.prototype.popupClosed = function() {
+ return this.romoOptionListDropdown.popupClosed();
+}
+
RomoSelectDropdown.prototype.selectedItemElem = function() {
return this.romoOptionListDropdown.selectedItemElem();
}
RomoSelectDropdown.prototype.selectedItemValue = function() {
@@ -59,9 +67,13 @@
// override as needed
}
RomoSelectDropdown.prototype.doSetSelectedItem = function(newValue) {
this.romoOptionListDropdown.doSetSelectedItem(newValue);
+}
+
+RomoSelectDropdown.prototype.doFocus = function(openOnFocus) {
+ this.romoOptionListDropdown.doFocus(openOnFocus);
}
/* private */
RomoSelectDropdown.prototype._bindElem = function() {