* Markup/CSS adjustments

* Move assets to folder

* Strip extra font-family

* More robust handling of project-load fail state

* Move empty project creation to its own function

* Move green flag/stop back out of the tab

* Restore default id
This commit is contained in:
Tim Mickel 2016-09-12 12:03:24 -04:00 committed by GitHub
parent 40b530fa7e
commit 79346c0925
7 changed files with 86 additions and 82 deletions

View file

@ -80,6 +80,10 @@ VirtualMachine.prototype.loadProject = function (json) {
this.vmWorker.postMessage({method: 'loadProject', json: json});
};
VirtualMachine.prototype.createEmptyProject = function () {
this.vmWorker.postMessage({method: 'createEmptyProject'});
};
VirtualMachine.prototype.setEditingTarget = function (targetId) {
this.vmWorker.postMessage({method: 'setEditingTarget', targetId: targetId});
};