Changeset 1302548
- Timestamp:
- 12/07/2015 09:33:55 PM (10 years ago)
- Location:
- secure-html5-video-player/trunk
- Files:
-
- 4 edited
-
readme.txt (modified) (3 diffs)
-
secure-html5-video-player.php (modified) (1 diff)
-
sh5vp-widgets.php (modified) (1 diff)
-
video-js/video-js.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
secure-html5-video-player/trunk/readme.txt
r1175628 r1302548 3 3 Tags: html5, video, player, secure, javascript, m4v, mp4, ogg, ogv, theora, webm, skins, media server, youtube, vimeo, amazon, s3 4 4 Requires at least: 3.0 5 Tested up to: 4. 16 Stable tag: 3.1 35 Tested up to: 4.3.1 6 Stable tag: 3.14 7 7 License: GPLv3 8 8 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 128 128 == Changelog == 129 129 130 = 3.14 = 131 * Fixed bad styling inherited from default Wordpress themes for box-sizing. 132 * Fixed use of deprecated PHP parent constructor. 133 130 134 = 3.13 = 131 135 * Fixed a bug Youtube embeds failed to render because of failure to load the Youtube API. … … 236 240 == Upgrade Notice == 237 241 242 = 3.14 = 243 Fixed bad styling inherited from default Wordpress themes for box-sizing. Fixed use of deprecated PHP parent constructor. 244 238 245 = 3.13 = 239 246 Fixed a bug Youtube embeds failed to render because of failure to load the Youtube API. -
secure-html5-video-player/trunk/secure-html5-video-player.php
r1175628 r1302548 5 5 Description: Secure HTML5 Video Player allows you to play HTML5 video on modern browsers. Videos can be served privately; pseudo-streamed from a secured directory or via S3. 6 6 Author: Lucinda Brown, Jinsoo Kang 7 Version: 3.1 37 Version: 3.14 8 8 Author URI: http://www.trillamar.com/ 9 9 License: GPLv3 -
secure-html5-video-player/trunk/sh5vp-widgets.php
r985103 r1302548 32 32 'width' => 400 33 33 ); 34 $this->WP_Widget(false, __('Secure HTML5 Video Player', 'secure-html5-video-player'), $widget_ops, $control_ops);34 parent::__construct(false, __('Secure HTML5 Video Player', 'secure-html5-video-player'), $widget_ops, $control_ops); 35 35 } 36 36 -
secure-html5-video-player/trunk/video-js/video-js.css
r421358 r1302548 8 8 Will be set to the width of the video element through JS 9 9 If you want to add some kind of frame or special positioning, use another containing element, not video-js-box. */ 10 .video-js-box { text-align: left; position: relative; line-height: 0 !important; margin: 0; padding: 0 !important; border: none !important; } 10 .video-js-box { text-align: left; position: relative; line-height: 0 !important; margin: 0; padding: 0 !important; border: none !important; 11 box-sizing: content-box !important; 12 } 11 13 12 14 /* Video Element */
Note: See TracChangeset
for help on using the changeset viewer.