Marcos Duque
Marcos Duque
I do this, it's not beatiful but it works for me: ``` CoffeeScript canvasWidth = if canvas.offsetWidth != 0 then canvas.offsetWidth else $('.canvas-container').width() # I use the width of the...
Don't forget that when defining the size of a canvas element, there are two sizes, html and css. You have to define the **html** size of the canvas. By the...
Happening to me as well. Opening my app spawns 8 (!) empty terminal windows. They have the same title than the "good" one, so it's not easy to identify and...
It's irrelevant, but you can also remove or comment the line where the event listener is removed in the destroy method: `self.removeEventListener(self.element, 'blur', close, false);`