split long line

This commit is contained in:
Isaac Connor 2021-01-11 13:37:32 -05:00
parent 1b1438bf7a
commit 9a821e1fb9
1 changed files with 2 additions and 1 deletions

View File

@ -83,7 +83,8 @@ function vjsReplay() {
} // end function vjsReplay
function initialAlarmCues(eventId) {
$j.getJSON(thisUrl + '?view=request&request=status&entity=frames&id=' + eventId, setAlarmCues) //get frames data for alarmCues and inserts into html
//get frames data for alarmCues and inserts into html
$j.getJSON(thisUrl + '?view=request&request=status&entity=frames&id=' + eventId, setAlarmCues)
.fail(logAjaxFail);
}