Stub implementation of flatten().

This commit is contained in:
Michael Jumper
2012-11-03 18:38:35 -07:00
parent b592b74513
commit 7858b631d6

View File

@@ -1167,6 +1167,17 @@ Guacamole.Client = function(tunnel) {
return displayScale;
};
/**
* Returns a canvas element containing the entire display, with all child
* layers composited within.
*/
this.flatten = function() {
// STUB: For now, just return canvas from root layer
return getLayer(0).getCanvas();
};
};
/**