From f79dce48d94ec6ebbe51d77a378cc6b5c047cc7d Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Tue, 10 May 2022 11:46:12 +0900 Subject: [PATCH] Update std.js --- lib/std.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/std.js b/lib/std.js index 80af678..7e7eee4 100644 --- a/lib/std.js +++ b/lib/std.js @@ -316,13 +316,13 @@ function StdEvent(type) { this.defaultPrevented = false; this.timeStamp = new Date(); this.type = type; - this.isTrusted = true; - this.cancelable = true; + this.isTrusted = true; + this.cancelable = true; this.target = null; - this.currentTarget = null; - this.eventPhase = StdEvent.NONE; - this.bubbles = false; // Not used but to be compatible - this.composed = false; // Not used but to be compatible + this.currentTarget = null; + this.eventPhase = StdEvent.NONE; + this.bubbles = false; // Not used but to be compatible + this.composed = false; // Not used but to be compatible this.preventDefault = function() { this.defaultPrevented = true;