From 32ca007f74b894f7c4cc8b6c6053ae9399bf95a1 Mon Sep 17 00:00:00 2001 From: Kyle Johnson Date: Tue, 27 Jan 2015 11:26:01 -0500 Subject: [PATCH] Fix bug: Frames button did not properly swap text --- web/skins/bootstrap/js/controllers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/skins/bootstrap/js/controllers.js b/web/skins/bootstrap/js/controllers.js index badc466ca..7990bbe42 100644 --- a/web/skins/bootstrap/js/controllers.js +++ b/web/skins/bootstrap/js/controllers.js @@ -190,7 +190,7 @@ ZoneMinder.controller('EventController', function($scope, Event, $modalInstance, }; $scope.eventView = function() { - $scope.eventView_text = 'Stream'; + $scope.eventView_text = $scope.eventView_text == 'Stream' ? 'Frames' : 'Stream'; $scope.stream = $scope.stream == true ? false : true; }; });