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
1 changed files with 5 additions and 1 deletions

View File

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