Stop list items from overflowing to new lines in node ui

Fixes #1408
This commit is contained in:
Nick O'Leary
2018-01-25 14:02:04 +00:00
parent 2cea3b6435
commit 22a5b339f7
3 changed files with 14 additions and 4 deletions

View File

@@ -201,6 +201,10 @@
if (!opt.hasOwnProperty('i')) {
opt._i = Math.floor((0x99999-0x10000)*Math.random()).toString(16);
}
container.css({
overflow: 'hidden',
whiteSpace: 'nowrap'
});
var row = $('<div/>').appendTo(container);
var row2 = $('<div/>',{style:"padding-top: 5px; padding-left: 175px;"}).appendTo(container);
var row3 = $('<div/>',{style:"padding-top: 5px; padding-left: 102px;"}).appendTo(container);