diff options
author | Heckyel <heckyel@openmailbox.org> | 2016-12-16 12:09:42 -0500 |
---|---|---|
committer | Heckyel <heckyel@openmailbox.org> | 2016-12-16 12:09:42 -0500 |
commit | 3b606d79c81d3ca19114b911bfe2e36184f715e9 (patch) | |
tree | 6c7ea72d9015152ae27b20fe903a410cc362cfb3 /librevideojs/js/cliplibrejs.dev.js | |
parent | 683deee7e98d561af567842148b1f8d6caaf35be (diff) | |
download | librevideojs-html5-player-3b606d79c81d3ca19114b911bfe2e36184f715e9.tar.lz librevideojs-html5-player-3b606d79c81d3ca19114b911bfe2e36184f715e9.tar.xz librevideojs-html5-player-3b606d79c81d3ca19114b911bfe2e36184f715e9.zip |
corrección responsive desing
Diffstat (limited to 'librevideojs/js/cliplibrejs.dev.js')
-rw-r--r-- | librevideojs/js/cliplibrejs.dev.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/librevideojs/js/cliplibrejs.dev.js b/librevideojs/js/cliplibrejs.dev.js index 12c3af9..ef80332 100644 --- a/librevideojs/js/cliplibrejs.dev.js +++ b/librevideojs/js/cliplibrejs.dev.js @@ -5,7 +5,7 @@ * @licstart The following is the entire license notice for the * JavaScript code in this page. * - * Copyleft 2016 Jesus E. M. + * Copyleft 2016 Jesús Eduardo, Jorge Maldonado Ventura * * The JavaScript code in this page is free software: you can * redistribute it and/or modify it under the terms of the GNU @@ -2637,8 +2637,8 @@ librevjs.Player.prototype.createEl = function(){ // Make box use width/height of tag, or rely on default implementation // Enforce with CSS since width/height attrs don't work on divs - this.width(this.options_['width'], true); // (true) Skip resize listener on load - this.height(this.options_['height'], true); + this.width(this.options_['width="100%"'], true); // (true) Skip resize listener on load + this.height(this.options_['height="auto"'], true); // Wrap video tag in div (el/box) container if (tag.parentNode) { |