Skip to content

Commit

Permalink
hopefully this lints, bc I cant run the linter
Browse files Browse the repository at this point in the history
  • Loading branch information
kishtarn555 committed May 20, 2024
1 parent 24c17b3 commit df059a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/karel.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,11 +117,11 @@ Runtime.CALL = 25;
Runtime.RET = 26;
Runtime.PARAM = 27;

Runtime.prototype.addEventListener= function (type, listener) {
Runtime.prototype.addEventListener = function (type, listener) {
this.events.addEventListener(type,listener);
}

Runtime.prototype.removeEventListener= function (type, listener) {
Runtime.prototype.removeEventListener = function (type, listener) {
this.events.removeEventListener(type,listener);
}

Expand Down

0 comments on commit df059a5

Please sign in to comment.