Browse Source

Switch from double click to right click in service tab to open menu

Fixes #141
pull/291/merge
Ramiro Saenz 9 years ago
parent
commit
f3e963a86a
  1. 8
      app/ux/WebView.js

8
app/ux/WebView.js

@ -53,8 +53,14 @@ Ext.define('Rambox.ux.WebView',{
,tabConfig: {
listeners: {
badgetextchange: me.onBadgeTextChange
,afterrender : function( btn ) {
btn.el.on('contextmenu', function(e) {
btn.showMenu('contextmenu');
e.stopEvent();
});
}
}
,clickEvent: 'dblclick'
,clickEvent: ''
,menu: {
plain: true
,items: [

Loading…
Cancel
Save