Herbert Vojčík c580f1482c bump trysmalltalk and re-`bower install` the rest | %!s(int64=8) %!d(string=hai) anos | |
---|---|---|
.. | ||
tests | %!s(int64=10) %!d(string=hai) anos | |
README.md | %!s(int64=10) %!d(string=hai) anos | |
mousetrap-record.js | %!s(int64=8) %!d(string=hai) anos | |
mousetrap-record.min.js | %!s(int64=8) %!d(string=hai) anos |
This extension lets you use Mousetrap to record keyboard sequences and play them back:
<button onclick="recordSequence()">Record</button>
<script>
function recordSequence() {
Mousetrap.record(function(sequence) {
// sequence is an array like ['ctrl+k', 'c']
alert('You pressed: ' + sequence.join(' '));
});
}
</script>