mirror of
https://github.com/nasa/openmct.git
synced 2025-02-20 17:33:23 +00:00
Moved some vars
This commit is contained in:
parent
12a94f828a
commit
fc8630dbc6
@ -189,12 +189,13 @@ define(
|
||||
* @private
|
||||
*/
|
||||
NotificationService.prototype.selectNextNotification = function () {
|
||||
var notification;
|
||||
var notification,
|
||||
i=0;
|
||||
/*
|
||||
Loop through the notifications queue and find the first one that
|
||||
has not already been minimized (manually or otherwise).
|
||||
*/
|
||||
for (var i=0; i< this.notifications.length; i++) {
|
||||
for (; i< this.notifications.length; i++) {
|
||||
notification = this.notifications[i];
|
||||
|
||||
if (!notification.minimized
|
||||
|
Loading…
x
Reference in New Issue
Block a user