mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 08:04:01 +02:00
fixed goto bug
This commit is contained in:
parent
8e1bd70e44
commit
22a40f7ee7
1 changed files with 7 additions and 1 deletions
|
@ -20,7 +20,13 @@ var toolBar = null;
|
|||
var tablet = null;
|
||||
|
||||
function onAddressBarShown(visible) {
|
||||
button.editProperties({isActive: visible});
|
||||
if (tablet !== null) {
|
||||
if (tablet.onHomeScreen === true) {
|
||||
button.editProperties({isActive: visible});
|
||||
}
|
||||
} else {
|
||||
button.editProperties({isActive: visible});
|
||||
}
|
||||
}
|
||||
|
||||
function onClicked(){
|
||||
|
|
Loading…
Reference in a new issue