mitxp / HbbTV-Testsuite

Tests for HbbTV implementations
http://itv.mit-xperts.com/hbbtvtest/
131 stars 56 forks source link

The Application class doesn't have activate(); function #10

Closed sunglim closed 12 years ago

sunglim commented 12 years ago

Hi.

app = document.getElementById('appmgr').getOwnerApplication(document); app.show(); app.activate();

in this code, app.activate() returns error at Opera HbbTV Emulator. you can check with this video at 4:30 (http://www.youtube.com/watch?v=svTIuF1FWQc&feature=youtu.be)

and I cannot find any document which refer the activate() function.

thanks.

mitxp commented 12 years ago

Hi,

the app.activate() was included in HbbTV 0.5.0 and is there for backwards device compatibility. It shouldn't cause any harm, as it is surrounded by a try { } catch statement. And the app wouldn't show on these devices.

sunglim commented 12 years ago

I see, thanks