[NIFI-2898] Add Processor dialog processor descriptions now scrollable

This closes #1134.
This commit is contained in:
Scott Aslan 2016-10-13 16:55:17 -04:00 committed by Pierre Villard
parent b9a940bbd1
commit 9fb3039416
2 changed files with 3 additions and 0 deletions

View File

@ -61,6 +61,7 @@
height: 62px;
font-size: 12px;
line-height: 16px;
overflow-y: auto;
}
#processor-types-table {

View File

@ -310,6 +310,8 @@ nf.ng.ProcessorComponent = function (serviceProvider) {
$('#processor-type-description').html(processorType.description).ellipsis();
}
nf.Common.toggleScrollable($('#processor-type-description').get(0));
// populate the dom
$('#processor-type-name').text(processorType.label).ellipsis();
$('#selected-processor-name').text(processorType.label);