gluon-status-page: fix lastImage in Signal()
This commit is contained in:
parent
8c85be2125
commit
1944ea0e01
File diff suppressed because one or more lines are too long
@ -285,7 +285,7 @@
|
||||
'resize': function(w, h) {
|
||||
var lastImage;
|
||||
try {
|
||||
ctx.getImageData(0, 0, w, h);
|
||||
lastImage = ctx.getImageData(0, 0, w, h);
|
||||
} catch (e) {}
|
||||
canvas.width = w;
|
||||
canvas.height = h;
|
||||
@ -519,13 +519,13 @@
|
||||
el.classList.add("highlight");
|
||||
if (signal)
|
||||
signal.highlight = true;
|
||||
}
|
||||
};
|
||||
|
||||
el.onmouseleave = function () {
|
||||
el.classList.remove("highlight")
|
||||
el.classList.remove("highlight");
|
||||
if (signal)
|
||||
signal.highlight = false;
|
||||
}
|
||||
};
|
||||
|
||||
var timeout;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user