Merge pull request from tmickel/feature/stackclick

Add stack click event handler
This commit is contained in:
Tim Mickel 2016-06-01 13:11:44 -04:00
commit aee9447899
3 changed files with 274 additions and 318 deletions

View file

@ -55,6 +55,9 @@ function VirtualMachine () {
id: e.blockId
});
break;
case 'stackclick':
instance.runtime.toggleStack(e.blockId);
break;
}
};
@ -76,6 +79,9 @@ function VirtualMachine () {
id: e.blockId
});
break;
case 'stackclick':
instance.runtime.toggleStack(e.blockId);
break;
}
};
}

575
vm.js

File diff suppressed because it is too large Load diff

11
vm.min.js vendored

File diff suppressed because one or more lines are too long