Change render layer id to a class

It's only used to identify them in DOM explorer currently

Fixes #1255
This commit is contained in:
Daniel Imms
2018-01-27 22:26:00 -08:00
parent 6c54c6cded
commit 39abf8aecf
+1 -1
View File
@@ -31,7 +31,7 @@ export abstract class BaseRenderLayer implements IRenderLayer {
protected _colors: IColorSet
) {
this._canvas = document.createElement('canvas');
this._canvas.id = `xterm-${id}-layer`;
this._canvas.classList.add(`xterm-${id}-layer`);
this._canvas.style.zIndex = zIndex.toString();
this._ctx = this._canvas.getContext('2d', {alpha: _alpha});
this._ctx.scale(window.devicePixelRatio, window.devicePixelRatio);