Closed xiaoli closed 11 years ago
keypress.sequence_combo('meta /', function(event) {
// show help dialog ...
});
This bit works as promised.
I'll take a look into this first chance I get. Thanks. Just in case, which Windows are you running and do other meta key combos work for you, such as meta h or some other random combo?
keypress.combo('meta /', function(event) {
// show help dialog ...
});
keypress.combo('meta s', function(event) {
// save current state ...
});
Also failed with:
keypress.combo('ctrl /', function(event) {
// show help dialog ...
});
keypress.combo('ctrl s', function(event) {
// save current state ...
});
If pressing "s" or "/" + "ctrl", then it works. But "ctrl" + "s" or "/" get nothing.
Okay thank you, that's very helpful. I'll track this down.
Is Windows running natively or are you running via Parallels or something?
natively running on Dell desktop/laptop machines.
Hey, this should be working now with 1.0.4. Thanks for your help and sorry it took me so long to get around to this.
@Xiaoli Works now, both ctrl /
and / ctrl
on IE8 and IE9.
ctrl
(keyup and quickly press) /
also triggers that event.
Great, thanks for confirming! (the keyup and then press / is a little worrisome though, I'll check that out)
The problem on windows is if we holding "ctrl" then press down "/", it won't work. But reversely it works.