Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libs/bower_components/mousetrap/plugins/record/README.md')
-rw-r--r--libs/bower_components/mousetrap/plugins/record/README.md16
1 files changed, 0 insertions, 16 deletions
diff --git a/libs/bower_components/mousetrap/plugins/record/README.md b/libs/bower_components/mousetrap/plugins/record/README.md
deleted file mode 100644
index 903f6057ff..0000000000
--- a/libs/bower_components/mousetrap/plugins/record/README.md
+++ /dev/null
@@ -1,16 +0,0 @@
-# Record
-
-This extension lets you use Mousetrap to record keyboard sequences and play them back:
-
-```html
-<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>
-```