aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--boot.php2
-rw-r--r--include/main.js8
2 files changed, 9 insertions, 1 deletions
diff --git a/boot.php b/boot.php
index 7effe3087..61585419a 100644
--- a/boot.php
+++ b/boot.php
@@ -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 );
diff --git a/include/main.js b/include/main.js
index 040e9695e..288fd6f01 100644
--- a/include/main.js
+++ b/include/main.js
@@ -100,6 +100,14 @@
$('#pause').html('');
}
}
+ else {
+ // any key to resume
+ if(stopped == true) {
+ stopped = false;
+ $('#pause').html('');
+ }
+ }
+
});
});