diff --git a/apps/common/main/lib/component/ComboBox.js b/apps/common/main/lib/component/ComboBox.js index 4a4cd537bb..76049ea309 100644 --- a/apps/common/main/lib/component/ComboBox.js +++ b/apps/common/main/lib/component/ComboBox.js @@ -526,12 +526,12 @@ define([ this.scroller.destroy(); delete this.scroller; } - this.scroller = new Common.UI.Scroller({ + this.scroller = new Common.UI.Scroller(_.extend({ el: $('.dropdown-menu', this.cmpEl), minScrollbarLength : 40, scrollYMarginOffset: 30, includePadding : true - }); + }, this.options.scroller)); } } })());