mirror of
https://github.com/logsol/chuck.js.git
synced 2026-05-11 10:37:34 +00:00
fixed #91 crash after round end
This commit is contained in:
parent
b92cce88f2
commit
4f3a53ca53
6 changed files with 15 additions and 18 deletions
|
|
@ -17,6 +17,8 @@ function (Abstract) {
|
|||
current: { x: 0, y: 0},
|
||||
target: { x: 0, y: 0}
|
||||
};
|
||||
|
||||
this.ncTokens = [];
|
||||
}
|
||||
|
||||
Object.defineProperty(Layer, 'ID', {
|
||||
|
|
@ -49,5 +51,9 @@ function (Abstract) {
|
|||
this.zoom.target = z;
|
||||
};
|
||||
|
||||
Layer.prototype.destroy = function() {
|
||||
|
||||
};
|
||||
|
||||
return Layer;
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue