summaryrefslogtreecommitdiff
path: root/www/js
diff options
context:
space:
mode:
authorPliable Pixels <pliablepixels@gmail.com>2019-02-02 10:06:06 -0500
committerPliable Pixels <pliablepixels@gmail.com>2019-02-02 10:06:06 -0500
commit0132abea2f34fb1cb7045f9b908491c2c63a1f6c (patch)
tree960f093bbcd1184332b8c0d2e3c4834927d8ff12 /www/js
parent2be52f392f074844e450b828b22a8744e8e8c4ca (diff)
#755 animate and fade the entire window
Diffstat (limited to 'www/js')
-rw-r--r--www/js/MontageHistoryCtrl.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/www/js/MontageHistoryCtrl.js b/www/js/MontageHistoryCtrl.js
index 8f0a0fb7..24aea0f5 100644
--- a/www/js/MontageHistoryCtrl.js
+++ b/www/js/MontageHistoryCtrl.js
@@ -691,11 +691,11 @@ angular.module('zmApp.controllers').controller('zmApp.MontageHistoryCtrl', ['$sc
drawGraph(framearray, $scope.MontageMonitors[ndx].Monitor.Id);
}, 100);
var element = angular.element(document.getElementById($scope.MontageMonitors[ndx].Monitor.Id + "-timeline"));
- element.removeClass('animated flipInX');
- element.addClass('animated flipOutX');
+ element.removeClass('animated fadeIn');
+ element.addClass('animated fadeOut');
$timeout(function () {
- element.removeClass('animated flipOutX');
- element.addClass('animated flipInX');
+ element.removeClass('animated fadeOut');
+ element.addClass('animated fadeIn');
$scope.MontageMonitors[ndx].Monitor.eventUrlTime = data.event.Event.StartTime;
var bw = NVR.getBandwidth() == "lowbw" ? zm.eventMontageQualityLowBW : ld.montageHistoryQuality;
@@ -926,13 +926,13 @@ angular.module('zmApp.controllers').controller('zmApp.MontageHistoryCtrl', ['$sc
// m.Monitor.videoObject.config.sources[0].src = $sce.trustAsResourceUrl(videoURL);
var element = angular.element(document.getElementById(m.Monitor.Id + "-timeline"));
- element.removeClass('animated flipInX');
- element.addClass('animated flipOutX');
+ element.removeClass('animated fadeIn');
+ element.addClass('animated fadeOut');
$timeout (function () {
- element.removeClass('animated flipOutX');
- element.addClass('animated flipInX');
+ element.removeClass('animated fadeOut');
+ element.addClass('animated fadeIn');
NVR.debug ("--->updating videoURL for mid="+m.Monitor.Id+ "to:"+videoURL);
m.Monitor.eid = success.eid;