Skip to content

Commit

Permalink
Fix regression: 'nearby' broke on iOS, web
Browse files Browse the repository at this point in the history
  • Loading branch information
bvibber committed Jan 26, 2012
1 parent 0e50b3e commit 5a67a39
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion assets/www/ios/platform.js
Expand Up @@ -43,7 +43,7 @@ function updateMenuState() {
mw.msg('menu-cancel')
], function(val, index) {
if (index == 0) {
getCurrentPosition();
geo.showNearbyArticles();
} else if (index == 1) {
savedPages.showSavedPages();
} else if (index == 2) {
Expand Down
2 changes: 1 addition & 1 deletion assets/www/web/platform.js
Expand Up @@ -52,7 +52,7 @@ function updateMenuState() {
mw.msg('menu-cancel')
], function(val, index) {
if (index == 0) {
getCurrentPosition();
geo.showNearbyArticles();
} else if (index == 1) {
savedPages.showSavedPages();
} else if (index == 2) {
Expand Down

0 comments on commit 5a67a39

Please sign in to comment.