From 85de9e45cdee0289efdad8c6e8984bd830ebe38d Mon Sep 17 00:00:00 2001 From: Angie Israni Date: Thu, 24 Mar 2016 10:36:59 -0700 Subject: [PATCH] Revert "[PBW-4148] Deprecate VTC ready parameter" This reverts commit f399c8a0fd6d55bdfbc9e373f95e6bb424f1e144. --- js/google_ima.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/js/google_ima.js b/js/google_ima.js index 086a975..155712a 100644 --- a/js/google_ima.js +++ b/js/google_ima.js @@ -1819,6 +1819,9 @@ require("../html5-common/js/utils/utils.js"); this.features = [OO.VIDEO.FEATURE.VIDEO_OBJECT_SHARING_TAKE]; this.technology = OO.VIDEO.TECHNOLOGY.HTML5; + // This module defaults to ready because no setup or external loading is required + this.ready = true; + /** * Creates a video player instance using GoogleIMAVideoWrapper. * @public @@ -1865,6 +1868,7 @@ require("../html5-common/js/utils/utils.js"); */ this.destroy = function() { + this.ready = false; this.encodings = []; this.create = function() {}; this.createFromExisting = function() {};