add start/stop buttons

This commit is contained in:
lxsang
2019-05-07 14:34:26 +02:00
parent 5e4aa7b1d4
commit 8288379482
4 changed files with 18 additions and 0 deletions

View File

@ -223,6 +223,14 @@
(this.find("log-clear")).set("onbtclick", function(e) {
return me.log("clean");
});
(this.find("code-run")).set("onbtclick", function(e) {
return me.run();
});
(this.find("code-stop")).set("onbtclick", function(e) {
if (me.socket) {
return me.socket.close();
}
});
this.socket = null;
return this.bindKey("CTRL-R", function() {
return me.run();

View File

@ -5,6 +5,8 @@
<afx-vbox>
<afx-hbox data-height="20" data-id="bottom-vbox">
<afx-button data-id = "log-clear" data-width="25" iconclass="fa fa-trash"></afx-button>
<afx-button data-id = "code-run" data-width="25" iconclass="fa fa-play"></afx-button>
<afx-button data-id = "code-stop" data-width="25" iconclass="fa fa-stop"></afx-button>
</afx-hbox>
<div data-id="output"></div>
</afx-vbox>