Author: ygrego Date: 2015-06-15 10:19:09 +0000 (Mon, 15 Jun 2015) New Revision: 1718 Url: http://forge.nuiton.org/projects/sandbox/repository/revisions/1718 Log: When VideoBroadcastObject will be created(visually) the dimensions defined in the class will be used. Modified: oipf/lib/js/impl/VideoBroadcastObject.js Modified: oipf/lib/js/impl/VideoBroadcastObject.js =================================================================== --- oipf/lib/js/impl/VideoBroadcastObject.js 2015-06-15 08:26:54 UTC (rev 1717) +++ oipf/lib/js/impl/VideoBroadcastObject.js 2015-06-15 10:19:09 UTC (rev 1718) @@ -50,7 +50,7 @@ * the DOM Level 2 Style interfaces (i.e. CSS2Properties interface style.width ), at least for values * specified in pixels. */ - this.width = null; + this.width = "100%"; /* * Description: * The height of the area used for rendering the video object. This property is only writable if property @@ -59,7 +59,7 @@ * the DOM Level 2 Style interfaces (i.e. CSS2Properties interface style.height ), at least for values * specified in pixels. */ - this.heigth = null; + this.height = "100%"; /* * Description: @@ -74,7 +74,7 @@ * is read, the value returned SHALL always be the empty string. * Type: String */ - this.data = null; + this.data = ""; /*! * Description:
participants (1)
-
ygregoï¼ users.nuiton.org