1
0
mirror of https://github.com/shadowfacts/type.git synced 2025-01-07 10:14:17 +00:00

Merge branch 'master' of github.com:shadowfacts/type

This commit is contained in:
Shadowfacts 2016-10-08 14:27:07 -04:00
commit a71f5cce4d
Signed by: shadowfacts
GPG Key ID: 94A5AB95422746E5

View File

@ -530,7 +530,11 @@ function saveCursor(obj) {
}
function loadElapsedTime(obj) {
elapsedTime = obj.elapsedTime;
if (obj && obj.elapsedTime) {
elapsedTime = obj.elapsedTime;
} else {
elapsed = 0;
}
}
function saveElapsedTime(obj) {