summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2017-01-14 01:35:21 (GMT)
committerChristian Pointner <equinox@helsinki.at>2017-01-14 01:35:21 (GMT)
commit993df89c979d8da28f76395d4711a145a54c0b5c (patch)
tree6e846612a0e92d51f514257a97238e6ea8e7b7ef
parent45e778437255f9415a8b05fa69d80b2a8e186abe (diff)
minor refactoring
-rw-r--r--www/js/jingles.js2
-rw-r--r--www/js/musicpools.js2
-rw-r--r--www/js/shows.js2
-rw-r--r--www/js/utils.js2
4 files changed, 4 insertions, 4 deletions
diff --git a/www/js/jingles.js b/www/js/jingles.js
index 6b66ea4..6f4fb00 100644
--- a/www/js/jingles.js
+++ b/www/js/jingles.js
@@ -270,7 +270,7 @@ Rdxport.JingleCutView.prototype.render = function() {
.append($('<td>').append(status))
.append($('<td>').text(this.model.name))
.append($('<td>').text(this.model.description))
- .append($('<td>').text(msToTimeString(this.model.length)))
+ .append($('<td>').text(format_durationms(this.model.length)))
.append($('<td>').text(format_datetime(this.model.lastPlayDatetime)))
.append(
$('<td>').addClass('text-center')
diff --git a/www/js/musicpools.js b/www/js/musicpools.js
index 383cf9e..7395ef6 100644
--- a/www/js/musicpools.js
+++ b/www/js/musicpools.js
@@ -268,7 +268,7 @@ Rdxport.MusicpoolCartView.prototype.render = function() {
if (this.model.cuts.length > 0) {
var cut = this.model.cuts[0];
- length = msToTimeString(Number(cut.length));
+ length = format_durationms(Number(cut.length));
if (!isNaN(cut.originDatetime)) {
imported = format_datetime(cut.originDatetime);
}
diff --git a/www/js/shows.js b/www/js/shows.js
index 8a83057..b4687c3 100644
--- a/www/js/shows.js
+++ b/www/js/shows.js
@@ -370,7 +370,7 @@ Rdxport.ShowCartView.prototype.render = function() {
var playCounter = '-';
var lastPlayDatetime = '-';
if (cut) {
- length = msToTimeString(Number(cut.length));
+ length = format_durationms(Number(cut.length));
originDatetime = format_datetime(cut.originDatetime);
playCounter = cut.playCounter;
lastPlayDatetime = format_datetime(cut.lastPlayDatetime);
diff --git a/www/js/utils.js b/www/js/utils.js
index c0b006e..6140254 100644
--- a/www/js/utils.js
+++ b/www/js/utils.js
@@ -81,7 +81,7 @@ function format_datetime(d) {
return datetimestr;
}
-function msToTimeString(time) {
+function format_durationms(time) {
if(time == '-') return time;
var h = Number(Math.floor(time / 3600000));