Browse Source

Window: add a tooltip on the close button

master
parent
commit
84b27e6a5a
  1. 1
      src/Window.js

1
src/Window.js

@ -15,6 +15,7 @@ module.exports = class Window extends EventEmitter {
this.closeBtn = document.createElement('div')
this.closeBtn.className = 'closeBtn'
this.closeBtn.title = lang('close')
this.closeBtn.onclick = (e) => {
this.close()
e.stopImmediatePropagation()

Loading…
Cancel
Save