Version Description
- iframes now align correctly on mobile devices.
Download this release
Release Info
| Developer | wptipsntricks |
| Plugin | |
| Version | 1.9.0 |
| Comparing to | |
| See all releases | |
Code changes from version 1.8.9 to 1.9.0
- js/video-lightbox.js +1 -1
- readme.txt +5 -2
- wp-video-lightbox.php +2 -2
js/video-lightbox.js
CHANGED
|
@@ -79,7 +79,7 @@ jQuery(document).ready(function ($) {
|
|
| 79 |
image_markup: '<img id="fullResImage" src="{path}" />',
|
| 80 |
flash_markup: '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="{width}" height="{height}"><param name="wmode" value="{wmode}" /><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="{path}" /><embed src="{path}" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="{width}" height="{height}" wmode="{wmode}"></embed></object>',
|
| 81 |
quicktime_markup: '<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="{height}" width="{width}"><param name="src" value="{path}"><param name="autoplay" value="{autoplay}"><param name="type" value="video/quicktime"><embed src="{path}" height="{height}" width="{width}" autoplay="{autoplay}" type="video/quicktime" pluginspage="http://www.apple.com/quicktime/download/"></embed></object>',
|
| 82 |
-
iframe_markup: '<iframe src ="{path}" width="{width}" height="{height}" frameborder="no" allowfullscreen' + ((vlpp_vars.autoplay == "true") ? ' allow="autoplay"' : '') + '></iframe>', inline_markup: '<div class="pp_inline">{content}</div>',
|
| 83 |
custom_markup: '',
|
| 84 |
social_tools: false
|
| 85 |
});
|
| 79 |
image_markup: '<img id="fullResImage" src="{path}" />',
|
| 80 |
flash_markup: '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="{width}" height="{height}"><param name="wmode" value="{wmode}" /><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="{path}" /><embed src="{path}" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="{width}" height="{height}" wmode="{wmode}"></embed></object>',
|
| 81 |
quicktime_markup: '<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="{height}" width="{width}"><param name="src" value="{path}"><param name="autoplay" value="{autoplay}"><param name="type" value="video/quicktime"><embed src="{path}" height="{height}" width="{width}" autoplay="{autoplay}" type="video/quicktime" pluginspage="http://www.apple.com/quicktime/download/"></embed></object>',
|
| 82 |
+
iframe_markup: '<iframe src ="{path}" width="{width}" height="{height}" frameborder="no" style="display: block;margin: 0 auto;" allowfullscreen' + ((vlpp_vars.autoplay == "true") ? ' allow="autoplay"' : '') + '></iframe>', inline_markup: '<div class="pp_inline">{content}</div>',
|
| 83 |
custom_markup: '',
|
| 84 |
social_tools: false
|
| 85 |
});
|
readme.txt
CHANGED
|
@@ -3,8 +3,8 @@ Contributors: Tips and Tricks HQ, Ruhul Amin, wptipsntricks
|
|
| 3 |
Donate link: https://www.tipsandtricks-hq.com/
|
| 4 |
Tags: wordpress lightbox, wordpress video lightbox, video lightbox, wp video lightbox, wordpress video embed, add video to wordpress, gallery, image, images, lightbox, lightview, overlay, photo, photos, picture, video
|
| 5 |
Requires at least: 3.0
|
| 6 |
-
Tested up to: 5.
|
| 7 |
-
Stable tag: 1.
|
| 8 |
License: GPLv2 or later
|
| 9 |
|
| 10 |
Very easy to use WordPress lightbox plugin to display YouTube and Vimeo videos in an elegant lightbox overlay.
|
|
@@ -117,6 +117,9 @@ None
|
|
| 117 |
|
| 118 |
== Changelog ==
|
| 119 |
|
|
|
|
|
|
|
|
|
|
| 120 |
= 1.8.9 =
|
| 121 |
* Made some changes to the settings.
|
| 122 |
|
| 3 |
Donate link: https://www.tipsandtricks-hq.com/
|
| 4 |
Tags: wordpress lightbox, wordpress video lightbox, video lightbox, wp video lightbox, wordpress video embed, add video to wordpress, gallery, image, images, lightbox, lightview, overlay, photo, photos, picture, video
|
| 5 |
Requires at least: 3.0
|
| 6 |
+
Tested up to: 5.5
|
| 7 |
+
Stable tag: 1.9.0
|
| 8 |
License: GPLv2 or later
|
| 9 |
|
| 10 |
Very easy to use WordPress lightbox plugin to display YouTube and Vimeo videos in an elegant lightbox overlay.
|
| 117 |
|
| 118 |
== Changelog ==
|
| 119 |
|
| 120 |
+
= 1.9.0 =
|
| 121 |
+
* iframes now align correctly on mobile devices.
|
| 122 |
+
|
| 123 |
= 1.8.9 =
|
| 124 |
* Made some changes to the settings.
|
| 125 |
|
wp-video-lightbox.php
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
<?php
|
| 2 |
/*
|
| 3 |
Plugin Name: WP Video Lightbox
|
| 4 |
-
Version: 1.
|
| 5 |
Plugin URI: https://www.tipsandtricks-hq.com/?p=2700
|
| 6 |
Author: Tips and Tricks HQ, Ruhul Amin
|
| 7 |
Author URI: https://www.tipsandtricks-hq.com/
|
|
@@ -15,7 +15,7 @@ if (!class_exists('WP_Video_Lightbox'))
|
|
| 15 |
{
|
| 16 |
class WP_Video_Lightbox
|
| 17 |
{
|
| 18 |
-
var $version = '1.
|
| 19 |
var $db_version = '1.0';
|
| 20 |
var $plugin_url;
|
| 21 |
var $plugin_path;
|
| 1 |
<?php
|
| 2 |
/*
|
| 3 |
Plugin Name: WP Video Lightbox
|
| 4 |
+
Version: 1.9.0
|
| 5 |
Plugin URI: https://www.tipsandtricks-hq.com/?p=2700
|
| 6 |
Author: Tips and Tricks HQ, Ruhul Amin
|
| 7 |
Author URI: https://www.tipsandtricks-hq.com/
|
| 15 |
{
|
| 16 |
class WP_Video_Lightbox
|
| 17 |
{
|
| 18 |
+
var $version = '1.9.0';
|
| 19 |
var $db_version = '1.0';
|
| 20 |
var $plugin_url;
|
| 21 |
var $plugin_path;
|
