Skip to content
This repository was archived by the owner on Nov 28, 2022. It is now read-only.

Commit

Permalink
Issue #124: Use the Codewind home page as the default url for Node.js…
Browse files Browse the repository at this point in the history
… debug
  • Loading branch information
eharris369 committed Jun 27, 2019
1 parent 756fcbe commit 7192f6a
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,9 @@
@SuppressWarnings("restriction")
public class NodeJsBrowserDialog extends MessageDialog {

final String url;
public static final String DEFAULT_URL = "https://codewind.dev";

final String url;
final String browserName;

public NodeJsBrowserDialog(Shell parentShell, String dialogTitle,
Expand Down Expand Up @@ -106,7 +107,7 @@ public void widgetSelected(SelectionEvent e) {
button.addSelectionListener(new SelectionAdapter() {
@Override
public void widgetSelected(SelectionEvent e) {
launchWebBrowser(browserName, "https://microclimate-dev2ops.github.io/");
launchWebBrowser(browserName, DEFAULT_URL);
}
});

Expand Down

0 comments on commit 7192f6a

Please sign in to comment.