Herbert Vojčík c580f1482c bump trysmalltalk and re-`bower install` the rest %!s(int64=8) %!d(string=hai) anos
..
tests 7575f504ce Build site image; npm install;bower install;grunt devel %!s(int64=10) %!d(string=hai) anos
README.md 7575f504ce Build site image; npm install;bower install;grunt devel %!s(int64=10) %!d(string=hai) anos
mousetrap-record.js c580f1482c bump trysmalltalk and re-`bower install` the rest %!s(int64=8) %!d(string=hai) anos
mousetrap-record.min.js c580f1482c bump trysmalltalk and re-`bower install` the rest %!s(int64=8) %!d(string=hai) anos

README.md

Record

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>