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. 10
      app/ux/WebView.js

10
app/ux/WebView.js

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

Loading…
Cancel
Save