main
Last change
on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
575 bytes
|
Line | |
---|
1 | "use strict";
|
---|
2 | Object.defineProperty(exports, "__esModule", { value: true });
|
---|
3 | exports.FastLayer = void 0;
|
---|
4 | const Util_1 = require("./Util");
|
---|
5 | const Layer_1 = require("./Layer");
|
---|
6 | const Global_1 = require("./Global");
|
---|
7 | class FastLayer extends Layer_1.Layer {
|
---|
8 | constructor(attrs) {
|
---|
9 | super(attrs);
|
---|
10 | this.listening(false);
|
---|
11 | Util_1.Util.warn('Konva.Fast layer is deprecated. Please use "new Konva.Layer({ listening: false })" instead.');
|
---|
12 | }
|
---|
13 | }
|
---|
14 | exports.FastLayer = FastLayer;
|
---|
15 | FastLayer.prototype.nodeType = 'FastLayer';
|
---|
16 | (0, Global_1._registerNode)(FastLayer);
|
---|
Note:
See
TracBrowser
for help on using the repository browser.