From 602417f517c97c7c1fcb2016354b2edb9d74bcac Mon Sep 17 00:00:00 2001 From: yann300 Date: Wed, 18 Jul 2018 13:44:00 +0200 Subject: [PATCH] intro --- src/app/panels/terminal.js | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/app/panels/terminal.js b/src/app/panels/terminal.js index 6e25faee30..bfe9537b75 100644 --- a/src/app/panels/terminal.js +++ b/src/app/panels/terminal.js @@ -338,6 +338,15 @@ class Terminal { self._cmdIndex = -1 self._cmdTemp = '' + var intro = yo`
- Welcome to Remix v0.6.4 -

+
You can use this terminal for:
+
- Checking transactions details and start debugging.
+
- Running JavaScript scripts.
+
- Running JavaScript scripts involving web3 if the current environement is injected provider or Web3 provider.
+
- Executing common command to interact with the Remix interface (see list of commands below). Note that these command can also be included in a JavaScript script.
` + + self.commands.html(intro) + self._shell('remix.help()', self.commands, () => {}) return self._view.el function change (event) {