ajax pause - any key to resume

This commit is contained in:
Friendika 2011-07-20 17:17:08 -07:00
parent 40092c83a5
commit 5307225682
2 changed files with 9 additions and 1 deletions

View file

@ -100,6 +100,14 @@
$('#pause').html('');
}
}
else {
// any key to resume
if(stopped == true) {
stopped = false;
$('#pause').html('');
}
}
});
});