diff --git a/source/UI/js/Form/ArrayInput.js b/source/UI/js/Form/ArrayInput.js index 6ffac162..fda531c3 100644 --- a/source/UI/js/Form/ArrayInput.js +++ b/source/UI/js/Form/ArrayInput.js @@ -54,7 +54,6 @@ Ox.ArrayInput = function(options, self) { self.options.value = getValue(); function addInput(index, value, focus) { - Ox.Log('Form', 'add', index) self.$element.splice(index, 0, Ox.Element() .css({ height: '16px', @@ -153,7 +152,7 @@ Ox.ArrayInput = function(options, self) { } function setWidths() { - self.$label && self.$label.options({width: self.options.width}) + self.$label && self.$label.options({width: self.options.width}); self.$element.forEach(function($element, i) { $element.css({width: self.options.width + 'px'}); self.$input[i].options({width: self.options.width - 48});