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

@ -1,6 +1,6 @@
<?php
define ( 'FRIENDIKA_VERSION', '2.2.1046' );
define ( 'FRIENDIKA_VERSION', '2.2.1047' );
define ( 'DFRN_PROTOCOL_VERSION', '2.21' );
define ( 'DB_UPDATE_VERSION', 1076 );

View File

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