kiki/coffee/titlebar.coffee
2016-10-10 18:28:35 +02:00

21 lines
774 B
CoffeeScript

# 000000000 000 000000000 000 00000000 0000000 0000000 00000000
# 000 000 000 000 000 000 000 000 000 000 000
# 000 000 000 000 0000000 0000000 000000000 0000000
# 000 000 000 000 000 000 000 000 000 000 000
# 000 000 000 0000000 00000000 0000000 000 000 000 000
{$} = require './tools/tools'
electron = require 'electron'
ipc = electron.ipcRenderer
class Titlebar
constructor: () ->
@elem = $('.titlebar')
@elem.ondblclick = (event) =>
console.log window.winID
ipc.send 'maximizeWindow', window.winID
@selected = -1
module.exports = Titlebar