From b63b582485ec2aca8acd50845e9a30878da17779 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Thu, 18 Sep 2025 21:59:17 +0800 Subject: [PATCH] bugfix --- bricks/videoplayer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bricks/videoplayer.js b/bricks/videoplayer.js index eb0377a..4dad98d 100644 --- a/bricks/videoplayer.js +++ b/bricks/videoplayer.js @@ -59,7 +59,7 @@ bricks.VideoPlayer = class extends bricks.VBox { this.bind('domon', this.init.bind(this)); this.bind('domoff', this.destroy.bind(this)); - this.bind('click', this,show_controls.bind(this)); + this.bind('click', this.show_controls.bind(this)); schedule_once(this.hide_controls.bind(this), 40); }