Skip to content

Commit

Permalink
add semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
marusyaganza committed Nov 1, 2021
1 parent 53317e5 commit f2a8129
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -228,13 +228,13 @@ export const runContextMenu = () => {

this.hide = function() {
document.getElementById("cm_" + num).classList.remove("display");
removeHighlight()
removeHighlight();
window.removeEventListener("click", documentClick);
};

this.remove = function() {
document.getElementById("cm_" + num).remove();
removeHighlight()
removeHighlight();
window.removeEventListener("click", documentClick);
window.removeEventListener("resize", onResize);
};
Expand Down

0 comments on commit f2a8129

Please sign in to comment.