From aa089a5c194465b03b0182ecefd48c2bca53f670 Mon Sep 17 00:00:00 2001 From: Sandra Lokshina Date: Mon, 22 Jul 2019 10:58:01 -0700 Subject: [PATCH] Fix 'caststatuschanged' event name in pip button. Closes #2044 Change-Id: If288d46fe2b01dc613537d044a587195d3115991 --- ui/pip_button.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/pip_button.js b/ui/pip_button.js index 5970da5fb..af9e9c61e 100644 --- a/ui/pip_button.js +++ b/ui/pip_button.js @@ -100,7 +100,7 @@ shaka.ui.PipButton = class extends shaka.ui.Element { this.onLeavePictureInPicture_(); }); - this.eventManager.listen(this.controls, 'caststatuschange', (e) => { + this.eventManager.listen(this.controls, 'caststatuschanged', (e) => { this.onCastStatusChange_(e); });