You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Click on the meta button to show meta defined keyboard, click on it again will go back to normal keybaord, It makes users confusing about what is the current keyboard they are using, so I would like to make double-clicking meta button will stay on meta keyboard, does anyone know how to do that?
Thanks!!
The text was updated successfully, but these errors were encountered:
I'm not sure why your users would be confused since the meta key highlights when active (demo).
Anyway, it is possible, but you'd have to unbind the meta keys once the keyboard is visible, then add your own binding to activate the meta keyaction (demo):
visible: function(e,kb){kb.$keyboard.find('[data-name^="meta"]').unbind('mousedown'+kb.namespace).bind('dblclick',function(){$.keyboard.keyaction.meta(kb,this);})// add note to title.each(function(){this.title+=" (double click to activate)";});}
Click on the meta button to show meta defined keyboard, click on it again will go back to normal keybaord, It makes users confusing about what is the current keyboard they are using, so I would like to make double-clicking meta button will stay on meta keyboard, does anyone know how to do that?
Thanks!!
The text was updated successfully, but these errors were encountered: