mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-07 05:31:22 +00:00
Revert "Added busy handlers for layer, implemented ready instruction handling in client"
This reverts commit 7c3ceb1245a5e2a838811c10599b47b1578a5cf9.
This commit is contained in:
@@ -68,9 +68,7 @@ function Layer(width, height) {
|
||||
|
||||
resize(width, height);
|
||||
|
||||
var busyHandler = null;
|
||||
var readyHandler = null;
|
||||
|
||||
var updates = new Array();
|
||||
var autosize = 0;
|
||||
|
||||
@@ -133,10 +131,6 @@ function Layer(width, height) {
|
||||
readyHandler = handler;
|
||||
};
|
||||
|
||||
display.setBusyHandler = function(handler) {
|
||||
busyHandler = handler;
|
||||
};
|
||||
|
||||
|
||||
display.drawImage = function(x, y, image) {
|
||||
reserveJob(function() {
|
||||
@@ -147,11 +141,6 @@ function Layer(width, height) {
|
||||
|
||||
|
||||
display.draw = function(x, y, url) {
|
||||
|
||||
// If about to become busy, call busy handler
|
||||
if (display.isReady() && busyHandler != null)
|
||||
busyHandler();
|
||||
|
||||
var update = reserveJob(null);
|
||||
|
||||
var image = new Image();
|
||||
|
Reference in New Issue
Block a user