Changes

m
no edit summary
Line 82: Line 82:  
|style="background:gray;" colspan="14"|
 
|style="background:gray;" colspan="14"|
 
]=]
 
]=]
 +
 +
local function pad(n)
 +
  return n < 10 and '0' .. n or n
 +
end
    
local function formatTime(time)
 
local function formatTime(time)
   return math.floor(time / 60) .. ':' .. time % 60
+
   return string.format('%s:%s', pad(math.floor(time / 60)), pad(time % 60))
 
end
 
end
  
cssedit, gkautomate
7,060

edits