Browse Source

Code review

Removed console.log.
pull/2223/head
Juan Manuel Gonzalez Alama 6 years ago
parent
commit
c961e594a5
  1. 23
      app/Application.js

23
app/Application.js

@ -82,18 +82,17 @@ Ext.define('Rambox.Application', {
} }
} }
,{ ,{
key: "f" key: "f"
,ctrl: true ,ctrl: true
,alt: false ,alt: false
,shift: false ,shift: false
,handler: function(key) { ,handler: function(key) {
console.log('ok') var currentTab = Ext.cq1('app-main').getActiveTab();
var currentTab = Ext.cq1('app-main').getActiveTab() if (currentTab.getWebView) {
if(currentTab.getWebView) currentTab.down('component').el.dom.send('findInPage');
currentTab.down('component').el.dom.send('findInPage'); }
}
} }
}
,{ ,{
key: "\t" key: "\t"
,ctrl: true ,ctrl: true

Loading…
Cancel
Save