moved media streams to the database

This commit is contained in:
Luke Pulverenti 2013-12-05 22:39:44 -05:00
parent bd769dc6f3
commit 7c1639a112
2 changed files with 5 additions and 5 deletions

View File

@ -439,8 +439,8 @@ a.itemTag:hover {
}
.libraryPage ::-webkit-scrollbar {
width: 10px;
height: 10px;
width: 12px;
height: 12px;
}
.libraryPage ::-webkit-scrollbar-button:start:decrement,

View File

@ -1100,7 +1100,7 @@ var Dashboard = {
var parts = [];
var hours = ticks / ticksPerHour;
hours = hours.toFixed(0);
hours = Math.floor(hours);
if (hours) {
parts.push(hours);
@ -1111,7 +1111,7 @@ var Dashboard = {
var ticksPerMinute = 600000000;
var minutes = ticks / ticksPerMinute;
minutes = minutes.toFixed(0);
minutes = Math.floor(minutes);
ticks -= (minutes * ticksPerMinute);
@ -1123,7 +1123,7 @@ var Dashboard = {
var ticksPerSecond = 10000000;
var seconds = ticks / ticksPerSecond;
seconds = seconds.toFixed(0);
seconds = Math.round(seconds);
if (seconds < 10) {
seconds = '0' + seconds;