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"
,ctrl: true
,alt: false
,shift: false
,handler: function(key) {
console.log('ok')
var currentTab = Ext.cq1('app-main').getActiveTab()
if(currentTab.getWebView)
currentTab.down('component').el.dom.send('findInPage');
}
}
key: "f"
,ctrl: true
,alt: false
,shift: false
,handler: function(key) {
var currentTab = Ext.cq1('app-main').getActiveTab();
if (currentTab.getWebView) {
currentTab.down('component').el.dom.send('findInPage');
}
}
}
,{
key: "\t"
,ctrl: true

Loading…
Cancel
Save