Moved the .remove to UserInterface.js

This commit is contained in:
Chinmay Pandhare
2017-03-30 16:28:01 +05:30
parent f5ac3f4407
commit 4cf5bfacd2
3 changed files with 8 additions and 4 deletions

View File

@@ -19,7 +19,9 @@ module.exports = function UserInterface(options) {
}
// method to remove the UI for a given method, and remove the step
function remove() {}
function remove() {
$('div#sequencer-'+options.id).remove();
}
// method to reorder steps, and update the UI
//function move() {}