From 759c851ef4a3f31408558cab7ab587027ac280ec Mon Sep 17 00:00:00 2001 From: Kiro705 Date: Tue, 19 Nov 2019 11:44:11 -0500 Subject: [PATCH] fix for Controller setShowCountdown --- src/controller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controller.js b/src/controller.js index 8e1e4444..1b860f04 100644 --- a/src/controller.js +++ b/src/controller.js @@ -639,7 +639,7 @@ Controller.prototype.setAdBreakReadyListener = function(listener) { Controller.prototype.setShowCountdown = function(showCountdownIn) { this.adUi.setShowCountdown(showCountdownIn); this.showCountdown = showCountdownIn; - this.countdownDiv.style.display = this.showCountdown ? 'block' : 'none'; + this.adUi.countdownDiv.style.display = this.showCountdown ? 'block' : 'none'; };