Skip to content

Commit

Permalink
Android - fix user notification of new version (window.open)
Browse files Browse the repository at this point in the history
  • Loading branch information
gardenofwine committed Jan 7, 2013
1 parent 2429502 commit 7832ba0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion static/V2.0/apiParser.js
Expand Up @@ -319,7 +319,7 @@ function AndroidNotifyUpdate(){
],
fn : function(itemId){
if (itemId === 'ok'){
loadUrl('market://details?id=org.oknesset');
window.open('market://details?id=org.oknesset', "_blank");
}
},
msg: text,
Expand Down
2 changes: 1 addition & 1 deletion static/v1.0/createInitialData.js
Expand Up @@ -219,7 +219,7 @@ function AndroidNotifyUpdate(){
],
fn : function(itemId){
if (itemId === 'ok'){
loadUrl('market://details?id=org.oknesset');
window.open('market://details?id=org.oknesset', "_blank");
}
},
msg: text,
Expand Down

0 comments on commit 7832ba0

Please sign in to comment.