Hi, in this Fiddle, if I include 'shift++' in the following events to be added to my Keyboard, it also fires '+' any other time shift is pressed (as in 'shift+1'); if I remove it, all fire correctly.. what am I missing here?
keys: {
'esc': function(){ E.controlG('esc'); },
'shift+1': function(){ E.controlG('1'); },
'shift+-': function(){ E.controlG('-'); },
'shift++': function(){ E.controlG('+'); }
}
http://jsfiddle.net/davepilbeam/64PFV/
