summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--www/js/EventCtrl.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/www/js/EventCtrl.js b/www/js/EventCtrl.js
index c4b90a47..6da6f884 100644
--- a/www/js/EventCtrl.js
+++ b/www/js/EventCtrl.js
@@ -3268,7 +3268,8 @@ angular.module('zmApp.controllers')
var min = Math.floor(num/60);
var sec = Math.floor(num - min * 60);
stime="";
- if (min) stime += min+"m,";
+ if (min) stime += min+"m ";
+
if (sec) stime += sec+"s";
return stime;
};