BigW Consortium Gitlab

Commit 90058cf4 by Phil Hughes

Changed character match

parent 14cd8f08
......@@ -3,7 +3,7 @@
/* global droplab */
require('../window')(function(w){
var whiteListedKeys = [37, 38, 39, 40];
var charRegex = new RegExp('^.$', 'g');
w.droplabFilter = {
keydownWrapper: function(e){
......@@ -18,7 +18,7 @@ require('../window')(function(w){
return;
}
if (whiteListedKeys.indexOf(e.detail.which) !== -1) {
if (!charRegex.test(e.detail.key)) {
return;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment