Commit b0c7c000 authored by Julia Radzhabova's avatar Julia Radzhabova

Fix Bug 32998.

parent 1e1ea2c4
......@@ -211,8 +211,17 @@ define([
openMenu: function(delay) {
var me = this;
if ( !this.scroller ) {
this.scroller = new Common.UI.Scroller(_.extend({
el: $('.dropdown-menu', this.cmpEl),
minScrollbarLength: 40,
scrollYMarginOffset: 30,
includePadding: true
}, this.options.scroller));
}
_.delay(function(){
me.cmpEl.addClass('open')
me.cmpEl.addClass('open');
}, delay || 0);
},
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment