mirror of
https://github.com/nasa/openmct.git
synced 2025-06-18 23:28:14 +00:00
[Events] Reversed viewing order
When viewing an event message generator new messages are now added to the bottom of the display, rather than being added to the top and pushing the other messages down by one. #18.
This commit is contained in:
@ -90,11 +90,13 @@ define(
|
||||
var ind = i%messages.length;
|
||||
return "TEMP " + i.toString() + "-" + messages[ind][2] + "[" + domainDelta.toString() + "]";
|
||||
};
|
||||
|
||||
|
||||
|
||||
generatorData.getSeverityValue = function (i) {
|
||||
var ind = i%messages.length;
|
||||
return messages[ind][0];
|
||||
};
|
||||
|
||||
|
||||
return generatorData;
|
||||
}
|
||||
|
Reference in New Issue
Block a user