diff --git a/assets/gap.js b/assets/gap.js
index 778209a9..7380b106 100644
--- a/assets/gap.js
+++ b/assets/gap.js
@@ -315,7 +315,7 @@ var Device = {
return Device.storage.result;
},
testExistence: function(file){
- Device.storage.result = window.DroidGap.testDirOrFileExists(file);
+ Device.storage.result = window.DroidGap.testFileExists(file);
return Device.storage.result;
},
delFile: function(file){
@@ -329,7 +329,7 @@ var Device = {
createDir: function(file){
Device.storage.result = window.DroidGap.createDirectory(file);
return Device.storage.result;
- }
+ }
},
diff --git a/assets/index.html b/assets/index.html
index 1e35cb50..7ad8f82d 100644
--- a/assets/index.html
+++ b/assets/index.html
@@ -222,7 +222,6 @@ addLoadEvent(initGap);
-
Change Location