We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be5bacb commit 80059f5Copy full SHA for 80059f5
scripts/connectsdk.js
@@ -173,12 +173,14 @@ var connectsdk = (function () {
173
174
// Default
175
platforms.Default = {
176
+ interactive: false,
177
init: nop,
178
sendMessage: nop
179
};
180
181
// webOS
182
var WebOSCommon = {
183
+ interactive: true,
184
init: function () {
185
window.addEventListener("keydown", this.onKeyDown.bind(this));
186
@@ -273,6 +275,7 @@ var connectsdk = (function () {
273
275
// Google Cast
274
276
platforms.GoogleCast = {
277
name: "Google Cast",
278
279
280
this.mediaElement && (window.castMediaManager = new cast.receiver.MediaManager(this.mediaElement));
281
this.on("mediaElementUpdate", this.onMediaElementUpdate, this);
0 commit comments