* VRFS-1789 - loopback UI issues resolved

This commit is contained in:
Seth Call 2014-06-14 22:20:13 -05:00
parent e301792c36
commit dbd4e8a823
2 changed files with 4 additions and 1 deletions

View File

@ -79,7 +79,9 @@
if (i >= lights) {
state = 'off';
}
allLightsSelector.eq(lightCount - i - 1).addClass(colorClass + state);
var lightIndex = horizontal ? i : lightCount - i - 1;
allLightsSelector.eq(lightIndex).addClass(colorClass + state);
}
}

View File

@ -106,6 +106,7 @@
.ports {
height:100px;
overflow: auto;
}
.asio-settings-input-btn, .asio-settings-output-btn {