Make too tall menus scrollable

This commit is contained in:
buinsky
2016-07-18 22:33:16 +03:00
parent 134e4c1eb9
commit 3dfcd6db6a
4 changed files with 16 additions and 4 deletions

View File

@@ -282,7 +282,7 @@ var DynamicTable = new Class({
var menuId = this.dynamicTableDivId + '_headerMenu';
var ul = new Element('ul', {id: menuId, class: 'contextMenu'});
var ul = new Element('ul', {id: menuId, class: 'contextMenu scrollableMenu'});
var createLi = function(columnName, text) {
var html = '<a href="#' + columnName + '" ><img src="theme/checked"/>' + escapeHtml(text) + '</a>';