You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by mm...@apache.org on 2014/08/06 22:22:07 UTC

[2/2] git commit: Replace ?showBack with #?showBack for wp8

Replace ?showBack with #?showBack for wp8


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-test-framework/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-test-framework/commit/b73c9bdb
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-test-framework/tree/b73c9bdb
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-test-framework/diff/b73c9bdb

Branch: refs/heads/master
Commit: b73c9bdbb3f7afc5f482dbc87798bb28c722085c
Parents: e1dc65c
Author: Michal Mocny <mm...@gmail.com>
Authored: Wed Aug 6 16:01:27 2014 -0400
Committer: Michal Mocny <mm...@gmail.com>
Committed: Wed Aug 6 16:01:27 2014 -0400

----------------------------------------------------------------------
 www/main.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-test-framework/blob/b73c9bdb/www/main.js
----------------------------------------------------------------------
diff --git a/www/main.js b/www/main.js
index 5838b25..7e37e53 100644
--- a/www/main.js
+++ b/www/main.js
@@ -194,7 +194,7 @@ function runMain() {
   createActionButton('Auto Tests', setMode.bind(null, 'auto'));
   createActionButton('Manual Tests', setMode.bind(null, 'manual'));
   createActionButton('Reset App', location.reload.bind(location));
-  if (/showBack/.exec(location.search)) {
+  if (/showBack/.exec(location.hash)) {
       createActionButton('Back', function() {
           history.go(-1);
       });