Better mouse state object, more JSDoc, cleanup.

This commit is contained in:
Michael Jumper
2011-07-07 23:19:19 -07:00
parent 867e64637f
commit aea01a5cdb
3 changed files with 131 additions and 99 deletions

View File

@@ -48,9 +48,6 @@ Guacamole.Layer = function(width, height) {
* @private
*/
var display = document.createElement("canvas");
display.style.position = "absolute";
display.style.left = "0px";
display.style.top = "0px";
/**
* The 2D display context of the canvas element backing this Layer.
@@ -429,5 +426,4 @@ Guacamole.Layer = function(width, height) {
// Initialize canvas dimensions
resize(width, height);
}
};