Some work on sync lists.

This commit is contained in:
Tim 2015-07-02 01:48:38 +02:00
parent 4830cc7d68
commit 69ffaf5292
7 changed files with 333 additions and 26 deletions

View file

@ -237,4 +237,8 @@ function humanTime(seconds) {
text = '<h1> / </h1><h3>' + Math.floor(moment.duration(((seconds % 86400) % 3600), 'seconds').asMinutes()) + '</h3><p> mins</p>';
return text;
}
}
}
String.prototype.toProperCase = function () {
return this.replace(/\w\S*/g, function(txt){return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();});
};