mirror of
https://github.com/overte-org/community-apps.git
synced 2025-04-06 09:02:25 +02:00
Change the fallback to tutorial
When there is no home bookmark already set, the Home app was redirecting to localhost. But since there is a possibility that no localhost could be up and running, we will instead redirect to tutorial rather than to localhost. (tutorial being always present.)
This commit is contained in:
parent
8bd82fc431
commit
f0823de933
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@
|
||||||
if (LocationBookmarks.getHomeLocationAddress()) {
|
if (LocationBookmarks.getHomeLocationAddress()) {
|
||||||
location.handleLookupString(LocationBookmarks.getHomeLocationAddress());
|
location.handleLookupString(LocationBookmarks.getHomeLocationAddress());
|
||||||
} else {
|
} else {
|
||||||
location.goToLocalSandbox();
|
Window.location = "file:///~/serverless/tutorial.json";
|
||||||
}
|
}
|
||||||
button.editProperties({
|
button.editProperties({
|
||||||
isActive: false
|
isActive: false
|
||||||
|
|
Loading…
Reference in a new issue