최현준

시간 부분 수정

Showing 1 changed file with 3 additions and 3 deletions
......@@ -313,10 +313,10 @@ function make_time()
var temp = i+1;
if(3*i <= hours && 3*temp >= hours)
{
if(3*temp-1<10)
value.hours = '0'+3*temp-1;
if(3*i-1<10)
value.hours = '0'+3*i-1;
else
value.hours = 3*temp-1;
value.hours = 3*i-1;
value.hours += '00';
break;
}
......