debug combobox

This commit is contained in:
Maxim Kadushkin 2016-08-04 20:07:38 +03:00
parent 3e82cb1af3
commit 42bbfe2c76

View file

@ -526,12 +526,12 @@ define([
this.scroller.destroy(); this.scroller.destroy();
delete this.scroller; delete this.scroller;
} }
this.scroller = new Common.UI.Scroller({ this.scroller = new Common.UI.Scroller(_.extend({
el: $('.dropdown-menu', this.cmpEl), el: $('.dropdown-menu', this.cmpEl),
minScrollbarLength : 40, minScrollbarLength : 40,
scrollYMarginOffset: 30, scrollYMarginOffset: 30,
includePadding : true includePadding : true
}); }, this.options.scroller));
} }
} }
})()); })());