Link help to dummy help page

This commit is contained in:
Manfred Karrer 2014-09-29 13:07:35 +02:00
parent 0b808e529b
commit 8d5488b633
3 changed files with 8 additions and 2 deletions

View File

@ -87,8 +87,9 @@ public class Navigation {
public void navigateToLastStoredItem() {
Item[] items = (Item[]) persistence.read(this, "navigationItems");
// TODO we set BUY as default yet, should be HOME later
if (items == null || items.length == 0)
items = new Item[]{Item.MAIN, Item.HOME};
items = new Item[]{Item.MAIN, Item.BUY};
navigationTo(items);
}

View File

@ -333,6 +333,10 @@ public class MainViewCB extends ViewCB<MainPM> {
AnchorPane.setLeftAnchor(networkSyncPane, 0d);
AnchorPane.setBottomAnchor(networkSyncPane, 5d);
// TODO sometimes it keeps running... deactivate ti for the moment and replace it with the notification pane
// from Mike Hearn later
networkSyncPane.setVisible(false);
presentationModel.networkSyncComplete.addListener((ov, old, newValue) -> {
if (newValue)
networkSyncPane.downloadComplete();

View File

@ -43,7 +43,8 @@ public class Help {
public static void openWindow(HelpId id) {
try {
URL url = new URL("https://github.com/bitsquare/bitsquare/wiki/?" + id);
URL url = new URL("http://bitsquare.io/help.html?" + id);
// URL url = new URL("https://github.com/bitsquare/bitsquare/wiki/?" + id);
WebView webView;
if (helpWindow == null) {
helpWindow = new Stage();