Browse Source

Fixed visibility of webviews in macOS

Read more: https://github.com/electron/electron/issues/8505
v0.5.8
Ramiro Saenz 8 years ago
parent
commit
d6b2002760
  1. 2
      app/ux/WebView.js

2
app/ux/WebView.js

@ -168,7 +168,7 @@ Ext.define('Rambox.ux.WebView',{
,autoEl: { ,autoEl: {
tag: 'webview' tag: 'webview'
,src: me.record.get('url') ,src: me.record.get('url')
,style: 'width:100%;height:100%;' ,style: 'width:100%;height:100%;visibility:visible;'
,partition: 'persist:' + me.record.get('type') + '_' + me.id.replace('tab_', '') + (localStorage.getItem('id_token') ? '_' + Ext.decode(localStorage.getItem('profile')).user_id : '') ,partition: 'persist:' + me.record.get('type') + '_' + me.id.replace('tab_', '') + (localStorage.getItem('id_token') ? '_' + Ext.decode(localStorage.getItem('profile')).user_id : '')
,plugins: 'true' ,plugins: 'true'
,allowtransparency: 'on' ,allowtransparency: 'on'

Loading…
Cancel
Save