Fix discovered bug in .call missing param (thanks new TS version!)

This commit is contained in:
Josh Goldberg
2019-01-19 12:02:17 -05:00
parent b9a6b424ee
commit 930dcfa2ea
3 changed files with 6 additions and 5 deletions
+3 -3
View File
@@ -7825,9 +7825,9 @@
"dev": true
},
"timehandlr": {
"version": "0.7.3",
"resolved": "https://registry.npmjs.org/timehandlr/-/timehandlr-0.7.3.tgz",
"integrity": "sha512-U2j2qRwx5YVlevR1HEqI4BcZz19VSA4F/NaLwtWdHI3zO7FXyOSUhpKuzrlkC23mvXeDdwqpBjwKaxpUByaCZw=="
"version": "0.7.4",
"resolved": "https://registry.npmjs.org/timehandlr/-/timehandlr-0.7.4.tgz",
"integrity": "sha512-Mn6vYBAb2YqwNPQ90D7B2Wl+Sfcl7US9+o1rQxIH7Q5GCShasngBXxgJ9TvdvTD2Q2JEkZm1hPZn0d2jQqjbJQ=="
},
"timers-browserify": {
"version": "2.0.10",
+2 -1
View File
@@ -8,7 +8,8 @@
"url": "https://github.com/FullScreenShenanigans/MenuGraphr/issues"
},
"dependencies": {
"eightbittr": "^0.7.17"
"eightbittr": "^0.7.17",
"timehandlr": "^0.7.4"
},
"description": "In-game menu and dialog creation and management for EightBittr.",
"devDependencies": {
+1 -1
View File
@@ -1217,7 +1217,7 @@ export class MenuGraphr implements IMenuGraphr {
this.deleteMenuChildren(name);
if (child.onMenuDelete) {
child.onMenuDelete.call(this.eightBitter);
child.onMenuDelete.call(this.eightBitter, this.eightBitter);
}
if (child.children) {