support for squared select inputs

This commit is contained in:
rlx 2016-01-13 14:17:31 +05:30
parent 1a0c5aeab5
commit 3f4fa3b1fe

View file

@ -34,6 +34,7 @@ Ox.SelectInput = function(options, self) {
labelWidth: self.options.labelWidth,
max: self.options.max,
min: self.options.min,
style: self.options.style,
title: getTitle(),
value: self.options.value,
width: self.options.width
@ -47,6 +48,7 @@ Ox.SelectInput = function(options, self) {
self.$input = Ox.Input({
placeholder: self.options.placeholder,
style: self.options.style,
width: self.options.inputWidth,
value: self.options.inputValue
})