summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--www/js/DevOptionsCtrl.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/www/js/DevOptionsCtrl.js b/www/js/DevOptionsCtrl.js
index 5dd604ba..80dae62a 100644
--- a/www/js/DevOptionsCtrl.js
+++ b/www/js/DevOptionsCtrl.js
@@ -69,8 +69,8 @@ angular.module('zmApp.controllers').controller('zmApp.DevOptionsCtrl', ['$scope'
if ((parseInt($scope.loginData.maxFPS) < 0) || (parseInt($scope.loginData.maxFPS) > zm.maxFPS)) {
$scope.loginData.maxFPS = zm.defaultFPS.toString();
}
-
- if (parseInt($scope.loginData.refeshSec) <= 0) {
+
+ if (parseInt($scope.loginData.refreshSec) <= 0) {
ZMDataModel.zmDebug("SaveDevOptions: refresh sec was too low at " +
$scope.loginData.refreshSec + " reset to 1");
$scope.loginData.refreshSec = 1;