Version Description
- Fix: Tos"R"Us script initialized multiple times in Ajax
- Fix: Regex issue with replacing rel attribute
- Tweak: Swipebox updated to 1.4.1
Download this release
Release Info
Developer | dfactory |
Plugin | Responsive Lightbox & Gallery |
Version | 1.6.3 |
Comparing to | |
See all releases |
Code changes from version 1.6.2 to 1.6.3
- assets/swipebox/css/swipebox.css +8 -0
- assets/swipebox/js/jquery.swipebox.js +26 -5
- assets/swipebox/js/jquery.swipebox.min.js +1 -1
- includes/class-frontend.php +12 -13
- js/front.js +22 -22
- readme.txt +10 -5
- responsive-lightbox.php +3 -3
assets/swipebox/css/swipebox.css
CHANGED
@@ -215,9 +215,11 @@ html.swipebox-html.swipebox-touch {
|
|
215 |
0% {
|
216 |
left: 0;
|
217 |
}
|
|
|
218 |
50% {
|
219 |
left: -30px;
|
220 |
}
|
|
|
221 |
100% {
|
222 |
left: 0;
|
223 |
}
|
@@ -227,9 +229,11 @@ html.swipebox-html.swipebox-touch {
|
|
227 |
0% {
|
228 |
left: 0;
|
229 |
}
|
|
|
230 |
50% {
|
231 |
left: -30px;
|
232 |
}
|
|
|
233 |
100% {
|
234 |
left: 0;
|
235 |
}
|
@@ -238,9 +242,11 @@ html.swipebox-html.swipebox-touch {
|
|
238 |
0% {
|
239 |
left: 0;
|
240 |
}
|
|
|
241 |
50% {
|
242 |
left: 30px;
|
243 |
}
|
|
|
244 |
100% {
|
245 |
left: 0;
|
246 |
}
|
@@ -249,9 +255,11 @@ html.swipebox-html.swipebox-touch {
|
|
249 |
0% {
|
250 |
left: 0;
|
251 |
}
|
|
|
252 |
50% {
|
253 |
left: 30px;
|
254 |
}
|
|
|
255 |
100% {
|
256 |
left: 0;
|
257 |
}
|
215 |
0% {
|
216 |
left: 0;
|
217 |
}
|
218 |
+
|
219 |
50% {
|
220 |
left: -30px;
|
221 |
}
|
222 |
+
|
223 |
100% {
|
224 |
left: 0;
|
225 |
}
|
229 |
0% {
|
230 |
left: 0;
|
231 |
}
|
232 |
+
|
233 |
50% {
|
234 |
left: -30px;
|
235 |
}
|
236 |
+
|
237 |
100% {
|
238 |
left: 0;
|
239 |
}
|
242 |
0% {
|
243 |
left: 0;
|
244 |
}
|
245 |
+
|
246 |
50% {
|
247 |
left: 30px;
|
248 |
}
|
249 |
+
|
250 |
100% {
|
251 |
left: 0;
|
252 |
}
|
255 |
0% {
|
256 |
left: 0;
|
257 |
}
|
258 |
+
|
259 |
50% {
|
260 |
left: 30px;
|
261 |
}
|
262 |
+
|
263 |
100% {
|
264 |
left: 0;
|
265 |
}
|
assets/swipebox/js/jquery.swipebox.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
/*! Swipebox v1.
|
2 |
|
3 |
;( function ( window, document, $, undefined ) {
|
4 |
|
@@ -18,10 +18,12 @@
|
|
18 |
beforeOpen: null,
|
19 |
afterOpen: null,
|
20 |
afterClose: null,
|
|
|
|
|
21 |
loopAtEnd: false,
|
22 |
autoplayVideos: false,
|
23 |
queryStringData: {},
|
24 |
-
|
25 |
},
|
26 |
|
27 |
plugin = this,
|
@@ -743,8 +745,10 @@
|
|
743 |
a.href = decodeURIComponent( uri );
|
744 |
|
745 |
// QueryString to Object
|
746 |
-
|
747 |
-
|
|
|
|
|
748 |
// Extend with custom data
|
749 |
if ( $.isPlainObject( customData ) ) {
|
750 |
qs = $.extend( qs, customData, plugin.settings.queryStringData ); // The dev has always the final word
|
@@ -838,6 +842,9 @@
|
|
838 |
index++;
|
839 |
$this.setSlide( index );
|
840 |
$this.preloadMedia( index+1 );
|
|
|
|
|
|
|
841 |
} else {
|
842 |
|
843 |
if ( plugin.settings.loopAtEnd === true ) {
|
@@ -847,6 +854,9 @@
|
|
847 |
$this.preloadMedia( index );
|
848 |
$this.setSlide( index );
|
849 |
$this.preloadMedia( index + 1 );
|
|
|
|
|
|
|
850 |
} else {
|
851 |
$( '#swipebox-overlay' ).addClass( 'rightSpring' );
|
852 |
setTimeout( function() {
|
@@ -868,6 +878,9 @@
|
|
868 |
index--;
|
869 |
this.setSlide( index );
|
870 |
this.preloadMedia( index-1 );
|
|
|
|
|
|
|
871 |
} else {
|
872 |
$( '#swipebox-overlay' ).addClass( 'leftSpring' );
|
873 |
setTimeout( function() {
|
@@ -876,6 +889,14 @@
|
|
876 |
}
|
877 |
},
|
878 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
879 |
/**
|
880 |
* Close
|
881 |
*/
|
@@ -926,4 +947,4 @@
|
|
926 |
|
927 |
};
|
928 |
|
929 |
-
}( window, document, jQuery ) );
|
1 |
+
/*! Swipebox v1.4.1 | Constantin Saguin csag.co | MIT License | github.com/brutaldesign/swipebox */
|
2 |
|
3 |
;( function ( window, document, $, undefined ) {
|
4 |
|
18 |
beforeOpen: null,
|
19 |
afterOpen: null,
|
20 |
afterClose: null,
|
21 |
+
nextSlide: null,
|
22 |
+
prevSlide: null,
|
23 |
loopAtEnd: false,
|
24 |
autoplayVideos: false,
|
25 |
queryStringData: {},
|
26 |
+
toggleClassOnLoad: ''
|
27 |
},
|
28 |
|
29 |
plugin = this,
|
745 |
a.href = decodeURIComponent( uri );
|
746 |
|
747 |
// QueryString to Object
|
748 |
+
if ( a.search ) {
|
749 |
+
qs = JSON.parse( '{"' + a.search.toLowerCase().replace('?','').replace(/&/g,'","').replace(/=/g,'":"') + '"}' );
|
750 |
+
}
|
751 |
+
|
752 |
// Extend with custom data
|
753 |
if ( $.isPlainObject( customData ) ) {
|
754 |
qs = $.extend( qs, customData, plugin.settings.queryStringData ); // The dev has always the final word
|
842 |
index++;
|
843 |
$this.setSlide( index );
|
844 |
$this.preloadMedia( index+1 );
|
845 |
+
if ( plugin.settings.nextSlide ) {
|
846 |
+
plugin.settings.nextSlide();
|
847 |
+
}
|
848 |
} else {
|
849 |
|
850 |
if ( plugin.settings.loopAtEnd === true ) {
|
854 |
$this.preloadMedia( index );
|
855 |
$this.setSlide( index );
|
856 |
$this.preloadMedia( index + 1 );
|
857 |
+
if ( plugin.settings.nextSlide ) {
|
858 |
+
plugin.settings.nextSlide();
|
859 |
+
}
|
860 |
} else {
|
861 |
$( '#swipebox-overlay' ).addClass( 'rightSpring' );
|
862 |
setTimeout( function() {
|
878 |
index--;
|
879 |
this.setSlide( index );
|
880 |
this.preloadMedia( index-1 );
|
881 |
+
if ( plugin.settings.prevSlide ) {
|
882 |
+
plugin.settings.prevSlide();
|
883 |
+
}
|
884 |
} else {
|
885 |
$( '#swipebox-overlay' ).addClass( 'leftSpring' );
|
886 |
setTimeout( function() {
|
889 |
}
|
890 |
},
|
891 |
|
892 |
+
nextSlide : function () {
|
893 |
+
// Callback for next slide
|
894 |
+
},
|
895 |
+
|
896 |
+
prevSlide : function () {
|
897 |
+
// Callback for prev slide
|
898 |
+
},
|
899 |
+
|
900 |
/**
|
901 |
* Close
|
902 |
*/
|
947 |
|
948 |
};
|
949 |
|
950 |
+
}( window, document, jQuery ) );
|
assets/swipebox/js/jquery.swipebox.min.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1 |
/*! Swipebox v1.4.1 | Constantin Saguin csag.co | MIT License | github.com/brutaldesign/swipebox */
|
2 |
-
!function(a,b,c,d){c.swipebox=function(e,f){var g,h,i={useCSS:!0,useSVG:!0,initialIndexOnArray:0,removeBarsOnMobile:!0,hideCloseButtonOnMobile:!1,hideBarsDelay:3e3,videoMaxWidth:1140,vimeoColor:"cccccc",beforeOpen:null,afterOpen:null,afterClose:null,loopAtEnd:!1,autoplayVideos:!1,queryStringData:{},toggleClassOnLoad:""},j=this,k=[],l=e.selector,m=c(l),n=navigator.userAgent.match(/(iPad)|(iPhone)|(iPod)|(Android)|(PlayBook)|(BB10)|(BlackBerry)|(Opera Mini)|(IEMobile)|(webOS)|(MeeGo)/i),o=null!==n||b.createTouch!==d||"ontouchstart"in a||"onmsgesturechange"in a||navigator.msMaxTouchPoints,p=!!b.createElementNS&&!!b.createElementNS("http://www.w3.org/2000/svg","svg").createSVGRect,q=a.innerWidth?a.innerWidth:c(a).width(),r=a.innerHeight?a.innerHeight:c(a).height(),s=0,t='<div id="swipebox-overlay"> <div id="swipebox-container"> <div id="swipebox-slider"></div> <div id="swipebox-top-bar"> <div id="swipebox-title"></div> </div> <div id="swipebox-bottom-bar"> <div id="swipebox-arrows"> <a id="swipebox-prev"></a> <a id="swipebox-next"></a> </div> </div> <a id="swipebox-close"></a> </div> </div>';j.settings={},c.swipebox.close=function(){g.closeSlide()},c.swipebox.extend=function(){return g},j.init=function(){j.settings=c.extend({},i,f),c.isArray(e)?(k=e,g.target=c(a),g.init(j.settings.initialIndexOnArray)):c(b).on("click",l,function(a){if("slide current"===a.target.parentNode.className)return!1;c.isArray(e)||(g.destroy(),h=c(l),g.actions()),k=[];var b,d,f;f||(d="data-rel",f=c(this).attr(d)),f||(d="rel",f=c(this).attr(d)),h=f&&""!==f&&"nofollow"!==f?m.filter("["+d+'="'+f+'"]'):c(l),h.each(function(){var a=null,b=null;c(this).attr("title")&&(a=c(this).attr("title")),c(this).attr("href")&&(b=c(this).attr("href")),k.push({href:b,title:a})}),b=h.index(c(this)),a.preventDefault(),a.stopPropagation(),g.target=c(a.target),g.init(b)})},g={init:function(a){j.settings.beforeOpen&&j.settings.beforeOpen(),this.target.trigger("swipebox-start"),c.swipebox.isOpen=!0,this.build(),this.openSlide(a),this.openMedia(a),this.preloadMedia(a+1),this.preloadMedia(a-1),j.settings.afterOpen&&j.settings.afterOpen()},build:function(){var a,b=this;c("body").append(t),p&&j.settings.useSVG===!0&&(a=c("#swipebox-close").css("background-image"),a=a.replace("png","svg"),c("#swipebox-prev, #swipebox-next, #swipebox-close").css({"background-image":a})),n&&j.settings.removeBarsOnMobile&&c("#swipebox-bottom-bar, #swipebox-top-bar").remove(),c.each(k,function(){c("#swipebox-slider").append('<div class="slide"></div>')}),b.setDim(),b.actions(),o&&b.gesture(),b.keyboard(),b.animBars(),b.resize()},setDim:function(){var b,d,e={};"onorientationchange"in a?a.addEventListener("orientationchange",function(){0===a.orientation?(b=q,d=r):(90===a.orientation||-90===a.orientation)&&(b=r,d=q)},!1):(b=a.innerWidth?a.innerWidth:c(a).width(),d=a.innerHeight?a.innerHeight:c(a).height()),e={width:b,height:d},c("#swipebox-overlay").css(e)},resize:function(){var b=this;c(a).resize(function(){b.setDim()}).resize()},supportTransition:function(){var a,c="transition WebkitTransition MozTransition OTransition msTransition KhtmlTransition".split(" ");for(a=0;a<c.length;a++)if(b.createElement("div").style[c[a]]!==d)return c[a];return!1},doCssTrans:function(){return j.settings.useCSS&&this.supportTransition()?!0:void 0},gesture:function(){var a,b,d,e,f,g,h=this,i=!1,j=!1,l=10,m=50,n={},o={},p=c("#swipebox-top-bar, #swipebox-bottom-bar"),r=c("#swipebox-slider");p.addClass("visible-bars"),h.setTimeout(),c("body").bind("touchstart",function(h){return c(this).addClass("touching"),a=c("#swipebox-slider .slide").index(c("#swipebox-slider .slide.current")),o=h.originalEvent.targetTouches[0],n.pageX=h.originalEvent.targetTouches[0].pageX,n.pageY=h.originalEvent.targetTouches[0].pageY,c("#swipebox-slider").css({"-webkit-transform":"translate3d("+s+"%, 0, 0)",transform:"translate3d("+s+"%, 0, 0)"}),c(".touching").bind("touchmove",function(h){if(h.preventDefault(),h.stopPropagation(),o=h.originalEvent.targetTouches[0],!j&&(f=d,d=o.pageY-n.pageY,Math.abs(d)>=m||i)){var p=.75-Math.abs(d)/r.height();r.css({top:d+"px"}),r.css({opacity:p}),i=!0}e=b,b=o.pageX-n.pageX,g=100*b/q,!j&&!i&&Math.abs(b)>=l&&(c("#swipebox-slider").css({"-webkit-transition":"",transition:""}),j=!0),j&&(b>0?0===a?c("#swipebox-overlay").addClass("leftSpringTouch"):(c("#swipebox-overlay").removeClass("leftSpringTouch").removeClass("rightSpringTouch"),c("#swipebox-slider").css({"-webkit-transform":"translate3d("+(s+g)+"%, 0, 0)",transform:"translate3d("+(s+g)+"%, 0, 0)"})):0>b&&(k.length===a+1?c("#swipebox-overlay").addClass("rightSpringTouch"):(c("#swipebox-overlay").removeClass("leftSpringTouch").removeClass("rightSpringTouch"),c("#swipebox-slider").css({"-webkit-transform":"translate3d("+(s+g)+"%, 0, 0)",transform:"translate3d("+(s+g)+"%, 0, 0)"}))))}),!1}).bind("touchend",function(a){if(a.preventDefault(),a.stopPropagation(),c("#swipebox-slider").css({"-webkit-transition":"-webkit-transform 0.4s ease",transition:"transform 0.4s ease"}),d=o.pageY-n.pageY,b=o.pageX-n.pageX,g=100*b/q,i)if(i=!1,Math.abs(d)>=2*m&&Math.abs(d)>Math.abs(f)){var k=d>0?r.height():-r.height();r.animate({top:k+"px",opacity:0},300,function(){h.closeSlide()})}else r.animate({top:0,opacity:1},300);else j?(j=!1,b>=l&&b>=e?h.getPrev():-l>=b&&e>=b&&h.getNext()):p.hasClass("visible-bars")?(h.clearTimeout(),h.hideBars()):(h.showBars(),h.setTimeout());c("#swipebox-slider").css({"-webkit-transform":"translate3d("+s+"%, 0, 0)",transform:"translate3d("+s+"%, 0, 0)"}),c("#swipebox-overlay").removeClass("leftSpringTouch").removeClass("rightSpringTouch"),c(".touching").off("touchmove").removeClass("touching")})},setTimeout:function(){if(j.settings.hideBarsDelay>0){var b=this;b.clearTimeout(),b.timeout=a.setTimeout(function(){b.hideBars()},j.settings.hideBarsDelay)}},clearTimeout:function(){a.clearTimeout(this.timeout),this.timeout=null},showBars:function(){var a=c("#swipebox-top-bar, #swipebox-bottom-bar");this.doCssTrans()?a.addClass("visible-bars"):(c("#swipebox-top-bar").animate({top:0},500),c("#swipebox-bottom-bar").animate({bottom:0},500),setTimeout(function(){a.addClass("visible-bars")},1e3))},hideBars:function(){var a=c("#swipebox-top-bar, #swipebox-bottom-bar");this.doCssTrans()?a.removeClass("visible-bars"):(c("#swipebox-top-bar").animate({top:"-50px"},500),c("#swipebox-bottom-bar").animate({bottom:"-50px"},500),setTimeout(function(){a.removeClass("visible-bars")},1e3))},animBars:function(){var a=this,b=c("#swipebox-top-bar, #swipebox-bottom-bar");b.addClass("visible-bars"),a.setTimeout(),c("#swipebox-slider").click(function(){b.hasClass("visible-bars")||(a.showBars(),a.setTimeout())}),c("#swipebox-bottom-bar").hover(function(){a.showBars(),b.addClass("visible-bars"),a.clearTimeout()},function(){j.settings.hideBarsDelay>0&&(b.removeClass("visible-bars"),a.setTimeout())})},keyboard:function(){var b=this;c(a).bind("keyup",function(a){a.preventDefault(),a.stopPropagation(),37===a.keyCode?b.getPrev():39===a.keyCode?b.getNext():27===a.keyCode&&b.closeSlide()})},actions:function(){var a=this,b="touchend click";k.length<2?(c("#swipebox-bottom-bar").hide(),d===k[1]&&c("#swipebox-top-bar").hide()):(c("#swipebox-prev").bind(b,function(b){b.preventDefault(),b.stopPropagation(),a.getPrev(),a.setTimeout()}),c("#swipebox-next").bind(b,function(b){b.preventDefault(),b.stopPropagation(),a.getNext(),a.setTimeout()})),c("#swipebox-close").bind(b,function(){a.closeSlide()})},setSlide:function(a,b){b=b||!1;var d=c("#swipebox-slider");s=100*-a,this.doCssTrans()?d.css({"-webkit-transform":"translate3d("+100*-a+"%, 0, 0)",transform:"translate3d("+100*-a+"%, 0, 0)"}):d.animate({left:100*-a+"%"}),c("#swipebox-slider .slide").removeClass("current"),c("#swipebox-slider .slide").eq(a).addClass("current"),this.setTitle(a),b&&d.fadeIn(),c("#swipebox-prev, #swipebox-next").removeClass("disabled"),0===a?c("#swipebox-prev").addClass("disabled"):a===k.length-1&&j.settings.loopAtEnd!==!0&&c("#swipebox-next").addClass("disabled")},openSlide:function(b){c("html").addClass("swipebox-html"),o?(c("html").addClass("swipebox-touch"),j.settings.hideCloseButtonOnMobile&&c("html").addClass("swipebox-no-close-button")):c("html").addClass("swipebox-no-touch"),c(a).trigger("resize"),this.setSlide(b,!0)},preloadMedia:function(a){var b=this,c=null;k[a]!==d&&(c=k[a].href),b.isVideo(c)?b.openMedia(a):setTimeout(function(){b.openMedia(a)},1e3)},openMedia:function(a){var b,e,f=this;return k[a]!==d&&(b=k[a].href),0>a||a>=k.length?!1:(e=c("#swipebox-slider .slide").eq(a),void(f.isVideo(b)?e.html(f.getVideo(b)):(e.addClass("slide-loading"),f.loadMedia(b,function(){e.removeClass("slide-loading"),e.html(this)}))))},setTitle:function(a){var b=null;c("#swipebox-title").empty(),k[a]!==d&&(b=k[a].title),b?(c("#swipebox-top-bar").show(),c("#swipebox-title").append(b)):c("#swipebox-top-bar").hide()},isVideo:function(a){if(a){if(a.match(/(youtube\.com|youtube-nocookie\.com)\/watch\?v=([a-zA-Z0-9\-_]+)/)||a.match(/vimeo\.com\/([0-9]*)/)||a.match(/youtu\.be\/([a-zA-Z0-9\-_]+)/))return!0;if(a.toLowerCase().indexOf("swipeboxvideo=1")>=0)return!0}},parseUri:function(a,d){var e=b.createElement("a"),f={};return e.href=decodeURIComponent(a),f=JSON.parse('{"'+e.search.toLowerCase().replace("?","").replace(/&/g,'","').replace(/=/g,'":"')+'"}'),c.isPlainObject(d)&&(f=c.extend(f,d,j.settings.queryStringData)),c.map(f,function(a,b){return a&&a>""?encodeURIComponent(b)+"="+encodeURIComponent(a):void 0}).join("&")},getVideo:function(a){var b="",c=a.match(/((?:www\.)?youtube\.com|(?:www\.)?youtube-nocookie\.com)\/watch\?v=([a-zA-Z0-9\-_]+)/),d=a.match(/(?:www\.)?youtu\.be\/([a-zA-Z0-9\-_]+)/),e=a.match(/(?:www\.)?vimeo\.com\/([0-9]*)/),f="";return c||d?(d&&(c=d),f=g.parseUri(a,{autoplay:j.settings.autoplayVideos?"1":"0",v:""}),b='<iframe width="560" height="315" src="//'+c[1]+"/embed/"+c[2]+"?"+f+'" frameborder="0" allowfullscreen></iframe>'):e?(f=g.parseUri(a,{autoplay:j.settings.autoplayVideos?"1":"0",byline:"0",portrait:"0",color:j.settings.vimeoColor}),b='<iframe width="560" height="315" src="//player.vimeo.com/video/'+e[1]+"?"+f+'" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>'):b='<iframe width="560" height="315" src="'+a+'" frameborder="0" allowfullscreen></iframe>','<div class="swipebox-video-container" style="max-width:'+j.settings.videoMaxWidth+'px"><div class="swipebox-video">'+b+"</div></div>"},loadMedia:function(a,b){if(0===a.trim().indexOf("#"))b.call(c("<div>",{"class":"swipebox-inline-container"}).append(c(a).clone().toggleClass(j.settings.toggleClassOnLoad)));else if(!this.isVideo(a)){var d=c("<img>").on("load",function(){b.call(d)});d.attr("src",a)}},getNext:function(){var a,b=this,d=c("#swipebox-slider .slide").index(c("#swipebox-slider .slide.current"));d+1<k.length?(a=c("#swipebox-slider .slide").eq(d).contents().find("iframe").attr("src"),c("#swipebox-slider .slide").eq(d).contents().find("iframe").attr("src",a),d++,b.setSlide(d),b.preloadMedia(d+1)):j.settings.loopAtEnd===!0?(a=c("#swipebox-slider .slide").eq(d).contents().find("iframe").attr("src"),c("#swipebox-slider .slide").eq(d).contents().find("iframe").attr("src",a),d=0,b.preloadMedia(d),b.setSlide(d),b.preloadMedia(d+1)):(c("#swipebox-overlay").addClass("rightSpring"),setTimeout(function(){c("#swipebox-overlay").removeClass("rightSpring")},500))},getPrev:function(){var a,b=c("#swipebox-slider .slide").index(c("#swipebox-slider .slide.current"));b>0?(a=c("#swipebox-slider .slide").eq(b).contents().find("iframe").attr("src"),c("#swipebox-slider .slide").eq(b).contents().find("iframe").attr("src",a),b--,this.setSlide(b),this.preloadMedia(b-1)):(c("#swipebox-overlay").addClass("leftSpring"),setTimeout(function(){c("#swipebox-overlay").removeClass("leftSpring")},500))},closeSlide:function(){c("html").removeClass("swipebox-html"),c("html").removeClass("swipebox-touch"),c(a).trigger("resize"),this.destroy()},destroy:function(){c(a).unbind("keyup"),c("body").unbind("touchstart"),c("body").unbind("touchmove"),c("body").unbind("touchend"),c("#swipebox-slider").unbind(),c("#swipebox-overlay").remove(),c.isArray(e)||e.removeData("_swipebox"),this.target&&this.target.trigger("swipebox-destroy"),c.swipebox.isOpen=!1,j.settings.afterClose&&j.settings.afterClose()}},j.init()},c.fn.swipebox=function(a){if(!c.data(this,"_swipebox")){var b=new c.swipebox(this,a);this.data("_swipebox",b)}return this.data("_swipebox")}}(window,document,jQuery);
|
1 |
/*! Swipebox v1.4.1 | Constantin Saguin csag.co | MIT License | github.com/brutaldesign/swipebox */
|
2 |
+
!function(a,b,c,d){c.swipebox=function(e,f){var g,h,i={useCSS:!0,useSVG:!0,initialIndexOnArray:0,removeBarsOnMobile:!0,hideCloseButtonOnMobile:!1,hideBarsDelay:3e3,videoMaxWidth:1140,vimeoColor:"cccccc",beforeOpen:null,afterOpen:null,afterClose:null,nextSlide:null,prevSlide:null,loopAtEnd:!1,autoplayVideos:!1,queryStringData:{},toggleClassOnLoad:""},j=this,k=[],l=e.selector,m=c(l),n=navigator.userAgent.match(/(iPad)|(iPhone)|(iPod)|(Android)|(PlayBook)|(BB10)|(BlackBerry)|(Opera Mini)|(IEMobile)|(webOS)|(MeeGo)/i),o=null!==n||b.createTouch!==d||"ontouchstart"in a||"onmsgesturechange"in a||navigator.msMaxTouchPoints,p=!!b.createElementNS&&!!b.createElementNS("http://www.w3.org/2000/svg","svg").createSVGRect,q=a.innerWidth?a.innerWidth:c(a).width(),r=a.innerHeight?a.innerHeight:c(a).height(),s=0,t='<div id="swipebox-overlay"> <div id="swipebox-container"> <div id="swipebox-slider"></div> <div id="swipebox-top-bar"> <div id="swipebox-title"></div> </div> <div id="swipebox-bottom-bar"> <div id="swipebox-arrows"> <a id="swipebox-prev"></a> <a id="swipebox-next"></a> </div> </div> <a id="swipebox-close"></a> </div> </div>';j.settings={},c.swipebox.close=function(){g.closeSlide()},c.swipebox.extend=function(){return g},j.init=function(){j.settings=c.extend({},i,f),c.isArray(e)?(k=e,g.target=c(a),g.init(j.settings.initialIndexOnArray)):c(b).on("click",l,function(a){if("slide current"===a.target.parentNode.className)return!1;c.isArray(e)||(g.destroy(),h=c(l),g.actions()),k=[];var b,d,f;f||(d="data-rel",f=c(this).attr(d)),f||(d="rel",f=c(this).attr(d)),h=f&&""!==f&&"nofollow"!==f?m.filter("["+d+'="'+f+'"]'):c(l),h.each(function(){var a=null,b=null;c(this).attr("title")&&(a=c(this).attr("title")),c(this).attr("href")&&(b=c(this).attr("href")),k.push({href:b,title:a})}),b=h.index(c(this)),a.preventDefault(),a.stopPropagation(),g.target=c(a.target),g.init(b)})},g={init:function(a){j.settings.beforeOpen&&j.settings.beforeOpen(),this.target.trigger("swipebox-start"),c.swipebox.isOpen=!0,this.build(),this.openSlide(a),this.openMedia(a),this.preloadMedia(a+1),this.preloadMedia(a-1),j.settings.afterOpen&&j.settings.afterOpen()},build:function(){var a,b=this;c("body").append(t),p&&j.settings.useSVG===!0&&(a=c("#swipebox-close").css("background-image"),a=a.replace("png","svg"),c("#swipebox-prev, #swipebox-next, #swipebox-close").css({"background-image":a})),n&&j.settings.removeBarsOnMobile&&c("#swipebox-bottom-bar, #swipebox-top-bar").remove(),c.each(k,function(){c("#swipebox-slider").append('<div class="slide"></div>')}),b.setDim(),b.actions(),o&&b.gesture(),b.keyboard(),b.animBars(),b.resize()},setDim:function(){var b,d,e={};"onorientationchange"in a?a.addEventListener("orientationchange",function(){0===a.orientation?(b=q,d=r):(90===a.orientation||-90===a.orientation)&&(b=r,d=q)},!1):(b=a.innerWidth?a.innerWidth:c(a).width(),d=a.innerHeight?a.innerHeight:c(a).height()),e={width:b,height:d},c("#swipebox-overlay").css(e)},resize:function(){var b=this;c(a).resize(function(){b.setDim()}).resize()},supportTransition:function(){var a,c="transition WebkitTransition MozTransition OTransition msTransition KhtmlTransition".split(" ");for(a=0;a<c.length;a++)if(b.createElement("div").style[c[a]]!==d)return c[a];return!1},doCssTrans:function(){return j.settings.useCSS&&this.supportTransition()?!0:void 0},gesture:function(){var a,b,d,e,f,g,h=this,i=!1,j=!1,l=10,m=50,n={},o={},p=c("#swipebox-top-bar, #swipebox-bottom-bar"),r=c("#swipebox-slider");p.addClass("visible-bars"),h.setTimeout(),c("body").bind("touchstart",function(h){return c(this).addClass("touching"),a=c("#swipebox-slider .slide").index(c("#swipebox-slider .slide.current")),o=h.originalEvent.targetTouches[0],n.pageX=h.originalEvent.targetTouches[0].pageX,n.pageY=h.originalEvent.targetTouches[0].pageY,c("#swipebox-slider").css({"-webkit-transform":"translate3d("+s+"%, 0, 0)",transform:"translate3d("+s+"%, 0, 0)"}),c(".touching").bind("touchmove",function(h){if(h.preventDefault(),h.stopPropagation(),o=h.originalEvent.targetTouches[0],!j&&(f=d,d=o.pageY-n.pageY,Math.abs(d)>=m||i)){var p=.75-Math.abs(d)/r.height();r.css({top:d+"px"}),r.css({opacity:p}),i=!0}e=b,b=o.pageX-n.pageX,g=100*b/q,!j&&!i&&Math.abs(b)>=l&&(c("#swipebox-slider").css({"-webkit-transition":"",transition:""}),j=!0),j&&(b>0?0===a?c("#swipebox-overlay").addClass("leftSpringTouch"):(c("#swipebox-overlay").removeClass("leftSpringTouch").removeClass("rightSpringTouch"),c("#swipebox-slider").css({"-webkit-transform":"translate3d("+(s+g)+"%, 0, 0)",transform:"translate3d("+(s+g)+"%, 0, 0)"})):0>b&&(k.length===a+1?c("#swipebox-overlay").addClass("rightSpringTouch"):(c("#swipebox-overlay").removeClass("leftSpringTouch").removeClass("rightSpringTouch"),c("#swipebox-slider").css({"-webkit-transform":"translate3d("+(s+g)+"%, 0, 0)",transform:"translate3d("+(s+g)+"%, 0, 0)"}))))}),!1}).bind("touchend",function(a){if(a.preventDefault(),a.stopPropagation(),c("#swipebox-slider").css({"-webkit-transition":"-webkit-transform 0.4s ease",transition:"transform 0.4s ease"}),d=o.pageY-n.pageY,b=o.pageX-n.pageX,g=100*b/q,i)if(i=!1,Math.abs(d)>=2*m&&Math.abs(d)>Math.abs(f)){var k=d>0?r.height():-r.height();r.animate({top:k+"px",opacity:0},300,function(){h.closeSlide()})}else r.animate({top:0,opacity:1},300);else j?(j=!1,b>=l&&b>=e?h.getPrev():-l>=b&&e>=b&&h.getNext()):p.hasClass("visible-bars")?(h.clearTimeout(),h.hideBars()):(h.showBars(),h.setTimeout());c("#swipebox-slider").css({"-webkit-transform":"translate3d("+s+"%, 0, 0)",transform:"translate3d("+s+"%, 0, 0)"}),c("#swipebox-overlay").removeClass("leftSpringTouch").removeClass("rightSpringTouch"),c(".touching").off("touchmove").removeClass("touching")})},setTimeout:function(){if(j.settings.hideBarsDelay>0){var b=this;b.clearTimeout(),b.timeout=a.setTimeout(function(){b.hideBars()},j.settings.hideBarsDelay)}},clearTimeout:function(){a.clearTimeout(this.timeout),this.timeout=null},showBars:function(){var a=c("#swipebox-top-bar, #swipebox-bottom-bar");this.doCssTrans()?a.addClass("visible-bars"):(c("#swipebox-top-bar").animate({top:0},500),c("#swipebox-bottom-bar").animate({bottom:0},500),setTimeout(function(){a.addClass("visible-bars")},1e3))},hideBars:function(){var a=c("#swipebox-top-bar, #swipebox-bottom-bar");this.doCssTrans()?a.removeClass("visible-bars"):(c("#swipebox-top-bar").animate({top:"-50px"},500),c("#swipebox-bottom-bar").animate({bottom:"-50px"},500),setTimeout(function(){a.removeClass("visible-bars")},1e3))},animBars:function(){var a=this,b=c("#swipebox-top-bar, #swipebox-bottom-bar");b.addClass("visible-bars"),a.setTimeout(),c("#swipebox-slider").click(function(){b.hasClass("visible-bars")||(a.showBars(),a.setTimeout())}),c("#swipebox-bottom-bar").hover(function(){a.showBars(),b.addClass("visible-bars"),a.clearTimeout()},function(){j.settings.hideBarsDelay>0&&(b.removeClass("visible-bars"),a.setTimeout())})},keyboard:function(){var b=this;c(a).bind("keyup",function(a){a.preventDefault(),a.stopPropagation(),37===a.keyCode?b.getPrev():39===a.keyCode?b.getNext():27===a.keyCode&&b.closeSlide()})},actions:function(){var a=this,b="touchend click";k.length<2?(c("#swipebox-bottom-bar").hide(),d===k[1]&&c("#swipebox-top-bar").hide()):(c("#swipebox-prev").bind(b,function(b){b.preventDefault(),b.stopPropagation(),a.getPrev(),a.setTimeout()}),c("#swipebox-next").bind(b,function(b){b.preventDefault(),b.stopPropagation(),a.getNext(),a.setTimeout()})),c("#swipebox-close").bind(b,function(){a.closeSlide()})},setSlide:function(a,b){b=b||!1;var d=c("#swipebox-slider");s=100*-a,this.doCssTrans()?d.css({"-webkit-transform":"translate3d("+100*-a+"%, 0, 0)",transform:"translate3d("+100*-a+"%, 0, 0)"}):d.animate({left:100*-a+"%"}),c("#swipebox-slider .slide").removeClass("current"),c("#swipebox-slider .slide").eq(a).addClass("current"),this.setTitle(a),b&&d.fadeIn(),c("#swipebox-prev, #swipebox-next").removeClass("disabled"),0===a?c("#swipebox-prev").addClass("disabled"):a===k.length-1&&j.settings.loopAtEnd!==!0&&c("#swipebox-next").addClass("disabled")},openSlide:function(b){c("html").addClass("swipebox-html"),o?(c("html").addClass("swipebox-touch"),j.settings.hideCloseButtonOnMobile&&c("html").addClass("swipebox-no-close-button")):c("html").addClass("swipebox-no-touch"),c(a).trigger("resize"),this.setSlide(b,!0)},preloadMedia:function(a){var b=this,c=null;k[a]!==d&&(c=k[a].href),b.isVideo(c)?b.openMedia(a):setTimeout(function(){b.openMedia(a)},1e3)},openMedia:function(a){var b,e,f=this;return k[a]!==d&&(b=k[a].href),0>a||a>=k.length?!1:(e=c("#swipebox-slider .slide").eq(a),void(f.isVideo(b)?e.html(f.getVideo(b)):(e.addClass("slide-loading"),f.loadMedia(b,function(){e.removeClass("slide-loading"),e.html(this)}))))},setTitle:function(a){var b=null;c("#swipebox-title").empty(),k[a]!==d&&(b=k[a].title),b?(c("#swipebox-top-bar").show(),c("#swipebox-title").append(b)):c("#swipebox-top-bar").hide()},isVideo:function(a){if(a){if(a.match(/(youtube\.com|youtube-nocookie\.com)\/watch\?v=([a-zA-Z0-9\-_]+)/)||a.match(/vimeo\.com\/([0-9]*)/)||a.match(/youtu\.be\/([a-zA-Z0-9\-_]+)/))return!0;if(a.toLowerCase().indexOf("swipeboxvideo=1")>=0)return!0}},parseUri:function(a,d){var e=b.createElement("a"),f={};return e.href=decodeURIComponent(a),e.search&&(f=JSON.parse('{"'+e.search.toLowerCase().replace("?","").replace(/&/g,'","').replace(/=/g,'":"')+'"}')),c.isPlainObject(d)&&(f=c.extend(f,d,j.settings.queryStringData)),c.map(f,function(a,b){return a&&a>""?encodeURIComponent(b)+"="+encodeURIComponent(a):void 0}).join("&")},getVideo:function(a){var b="",c=a.match(/((?:www\.)?youtube\.com|(?:www\.)?youtube-nocookie\.com)\/watch\?v=([a-zA-Z0-9\-_]+)/),d=a.match(/(?:www\.)?youtu\.be\/([a-zA-Z0-9\-_]+)/),e=a.match(/(?:www\.)?vimeo\.com\/([0-9]*)/),f="";return c||d?(d&&(c=d),f=g.parseUri(a,{autoplay:j.settings.autoplayVideos?"1":"0",v:""}),b='<iframe width="560" height="315" src="//'+c[1]+"/embed/"+c[2]+"?"+f+'" frameborder="0" allowfullscreen></iframe>'):e?(f=g.parseUri(a,{autoplay:j.settings.autoplayVideos?"1":"0",byline:"0",portrait:"0",color:j.settings.vimeoColor}),b='<iframe width="560" height="315" src="//player.vimeo.com/video/'+e[1]+"?"+f+'" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>'):b='<iframe width="560" height="315" src="'+a+'" frameborder="0" allowfullscreen></iframe>','<div class="swipebox-video-container" style="max-width:'+j.settings.videoMaxWidth+'px"><div class="swipebox-video">'+b+"</div></div>"},loadMedia:function(a,b){if(0===a.trim().indexOf("#"))b.call(c("<div>",{"class":"swipebox-inline-container"}).append(c(a).clone().toggleClass(j.settings.toggleClassOnLoad)));else if(!this.isVideo(a)){var d=c("<img>").on("load",function(){b.call(d)});d.attr("src",a)}},getNext:function(){var a,b=this,d=c("#swipebox-slider .slide").index(c("#swipebox-slider .slide.current"));d+1<k.length?(a=c("#swipebox-slider .slide").eq(d).contents().find("iframe").attr("src"),c("#swipebox-slider .slide").eq(d).contents().find("iframe").attr("src",a),d++,b.setSlide(d),b.preloadMedia(d+1),j.settings.nextSlide&&j.settings.nextSlide()):j.settings.loopAtEnd===!0?(a=c("#swipebox-slider .slide").eq(d).contents().find("iframe").attr("src"),c("#swipebox-slider .slide").eq(d).contents().find("iframe").attr("src",a),d=0,b.preloadMedia(d),b.setSlide(d),b.preloadMedia(d+1),j.settings.nextSlide&&j.settings.nextSlide()):(c("#swipebox-overlay").addClass("rightSpring"),setTimeout(function(){c("#swipebox-overlay").removeClass("rightSpring")},500))},getPrev:function(){var a,b=c("#swipebox-slider .slide").index(c("#swipebox-slider .slide.current"));b>0?(a=c("#swipebox-slider .slide").eq(b).contents().find("iframe").attr("src"),c("#swipebox-slider .slide").eq(b).contents().find("iframe").attr("src",a),b--,this.setSlide(b),this.preloadMedia(b-1),j.settings.prevSlide&&j.settings.prevSlide()):(c("#swipebox-overlay").addClass("leftSpring"),setTimeout(function(){c("#swipebox-overlay").removeClass("leftSpring")},500))},nextSlide:function(){},prevSlide:function(){},closeSlide:function(){c("html").removeClass("swipebox-html"),c("html").removeClass("swipebox-touch"),c(a).trigger("resize"),this.destroy()},destroy:function(){c(a).unbind("keyup"),c("body").unbind("touchstart"),c("body").unbind("touchmove"),c("body").unbind("touchend"),c("#swipebox-slider").unbind(),c("#swipebox-overlay").remove(),c.isArray(e)||e.removeData("_swipebox"),this.target&&this.target.trigger("swipebox-destroy"),c.swipebox.isOpen=!1,j.settings.afterClose&&j.settings.afterClose()}},j.init()},c.fn.swipebox=function(a){if(!c.data(this,"_swipebox")){var b=new c.swipebox(this,a);this.data("_swipebox",b)}return this.data("_swipebox")}}(window,document,jQuery);
|
includes/class-frontend.php
CHANGED
@@ -119,7 +119,6 @@ class Responsive_Lightbox_Frontend {
|
|
119 |
}
|
120 |
}
|
121 |
}
|
122 |
-
|
123 |
}
|
124 |
|
125 |
return $content;
|
@@ -146,7 +145,7 @@ class Responsive_Lightbox_Frontend {
|
|
146 |
if ( $title )
|
147 |
$link = str_replace( '<a href', '<a title="'. $title .'" href', $link );
|
148 |
|
149 |
-
$link = ( preg_match( '/<a.*? (?:
|
150 |
|
151 |
// gallery image size
|
152 |
if ( Responsive_Lightbox()->options['settings']['gallery_image_size'] != 'full' ) {
|
@@ -174,30 +173,30 @@ class Responsive_Lightbox_Frontend {
|
|
174 |
* @return mixed
|
175 |
*/
|
176 |
public function add_custom_gallery_lightbox_selector( $content, $attr ) {
|
177 |
-
|
178 |
if ( Responsive_Lightbox()->options['settings']['force_custom_gallery'] === true ) {
|
179 |
-
|
180 |
preg_match_all( '/<a(.*?)href=(?:\'|")([^<]*?).(bmp|gif|jpeg|jpg|png)(?:\'|")(.*?)>/i', $content, $links );
|
181 |
-
|
182 |
if ( isset( $links[0] ) ) {
|
183 |
-
|
184 |
foreach ( $links[0] as $id => $link ) {
|
185 |
-
|
186 |
// gallery image title
|
187 |
$title = '';
|
188 |
-
|
189 |
if ( ( $title_arg = Responsive_Lightbox()->options['settings']['gallery_image_title'] ) !== 'default' ) {
|
190 |
-
|
191 |
$image_id = (int) $this->get_attachment_id_by_url( $links[2][$id] . '.' . $links[3][$id] );
|
192 |
-
|
193 |
if ( $image_id ) {
|
194 |
$title_arg = apply_filters( 'rl_lightbox_attachment_image_title_arg', $title_arg, $image_id, $links[2][$id] . '.' . $links[3][$id] );
|
195 |
$title = wp_strip_all_tags( trim( $this->get_attachment_title( $image_id, $title_arg ) ) );
|
196 |
}
|
197 |
}
|
198 |
-
|
199 |
-
if ( preg_match( '/<a.*?(?:
|
200 |
-
$content = str_replace( $link, preg_replace( '/(?:
|
201 |
} else {
|
202 |
$content = str_replace( $link, '<a' . $links[1][$id] . 'href="' . $links[2][$id] . '.' . $links[3][$id] . '"' . $links[4][$id] . ' data-rel="' . Responsive_Lightbox()->options['settings']['selector'] . '-gallery-' . $this->gallery_no . '"' . ( Responsive_Lightbox()->options['settings']['script'] === 'imagelightbox' ? ' data-imagelightbox="' . $id . '"' : '' ) . ( ! empty ( $title ) ? ' title="' . $title . '"' : '' ) . '>', $content );
|
203 |
}
|
119 |
}
|
120 |
}
|
121 |
}
|
|
|
122 |
}
|
123 |
|
124 |
return $content;
|
145 |
if ( $title )
|
146 |
$link = str_replace( '<a href', '<a title="'. $title .'" href', $link );
|
147 |
|
148 |
+
$link = ( preg_match( '/<a.*? (?:data-rel)=("|\').*?("|\')>/', $link ) === 1 ? preg_replace( '/(<a.*? data-rel=(?:"|\').*?)((?:"|\').*?>)/', '$1 ' . Responsive_Lightbox()->options['settings']['selector'] . '-gallery-' . $this->gallery_no . '$2', $link ) : preg_replace( '/(<a.*?)>/', '$1 data-rel="' . Responsive_Lightbox()->options['settings']['selector'] . '-gallery-' . $this->gallery_no . '">', $link ) );
|
149 |
|
150 |
// gallery image size
|
151 |
if ( Responsive_Lightbox()->options['settings']['gallery_image_size'] != 'full' ) {
|
173 |
* @return mixed
|
174 |
*/
|
175 |
public function add_custom_gallery_lightbox_selector( $content, $attr ) {
|
176 |
+
|
177 |
if ( Responsive_Lightbox()->options['settings']['force_custom_gallery'] === true ) {
|
178 |
+
|
179 |
preg_match_all( '/<a(.*?)href=(?:\'|")([^<]*?).(bmp|gif|jpeg|jpg|png)(?:\'|")(.*?)>/i', $content, $links );
|
180 |
+
|
181 |
if ( isset( $links[0] ) ) {
|
182 |
+
|
183 |
foreach ( $links[0] as $id => $link ) {
|
184 |
+
|
185 |
// gallery image title
|
186 |
$title = '';
|
187 |
+
|
188 |
if ( ( $title_arg = Responsive_Lightbox()->options['settings']['gallery_image_title'] ) !== 'default' ) {
|
189 |
+
|
190 |
$image_id = (int) $this->get_attachment_id_by_url( $links[2][$id] . '.' . $links[3][$id] );
|
191 |
+
|
192 |
if ( $image_id ) {
|
193 |
$title_arg = apply_filters( 'rl_lightbox_attachment_image_title_arg', $title_arg, $image_id, $links[2][$id] . '.' . $links[3][$id] );
|
194 |
$title = wp_strip_all_tags( trim( $this->get_attachment_title( $image_id, $title_arg ) ) );
|
195 |
}
|
196 |
}
|
197 |
+
|
198 |
+
if ( preg_match( '/<a.*?(?:data-rel)=(?:\'|")(.*?)(?:\'|").*?>/', $link, $result ) === 1 ) {
|
199 |
+
$content = str_replace( $link, preg_replace( '/(?:data-rel)=(?:\'|")(.*?)(?:\'|")/', 'data-rel="' . Responsive_Lightbox()->options['settings']['selector'] . '-gallery-' . $this->gallery_no . '"' . ( ! empty ( $title ) ? ' title="' . $title . '"' : '' ) . ( Responsive_Lightbox()->options['settings']['script'] === 'imagelightbox' ? ' data-imagelightbox="' . $id . '"' : '' ), $link ), $content );
|
200 |
} else {
|
201 |
$content = str_replace( $link, '<a' . $links[1][$id] . 'href="' . $links[2][$id] . '.' . $links[3][$id] . '"' . $links[4][$id] . ' data-rel="' . Responsive_Lightbox()->options['settings']['selector'] . '-gallery-' . $this->gallery_no . '"' . ( Responsive_Lightbox()->options['settings']['script'] === 'imagelightbox' ? ' data-imagelightbox="' . $id . '"' : '' ) . ( ! empty ( $title ) ? ' title="' . $title . '"' : '' ) . '>', $content );
|
202 |
}
|
js/front.js
CHANGED
@@ -19,7 +19,7 @@
|
|
19 |
selector = event.selector
|
20 |
args = event.args;
|
21 |
|
22 |
-
if ( script === undefined || selector === undefined ) {
|
23 |
return false;
|
24 |
}
|
25 |
|
@@ -110,17 +110,16 @@
|
|
110 |
case 'nivo':
|
111 |
|
112 |
$.each( $( 'a[rel*="' + rlArgs.selector + '"], a[data-rel*="' + rlArgs.selector + '"]' ), function () {
|
113 |
-
|
114 |
var attr = $( this ).attr( 'data-rel' );
|
115 |
|
116 |
-
|
117 |
-
|
|
|
118 |
attr = $( this ).attr( 'rel' );
|
119 |
}
|
120 |
|
121 |
-
// for some browsers, `attr` is undefined; for others,
|
122 |
-
|
123 |
-
if ( typeof attr !== undefined && attr !== false ) {
|
124 |
var match = attr.match( new RegExp( rlArgs.selector + '\\-(gallery\\-(?:[\\da-z]{1,4}))', 'ig' ) );
|
125 |
|
126 |
if ( match !== null ) {
|
@@ -146,19 +145,20 @@
|
|
146 |
$( 'a[rel*="' + rlArgs.selector + '"], a[data-rel*="' + rlArgs.selector + '"]' ).each( function ( i, item ) {
|
147 |
var attr = $( item ).attr( 'data-rel' );
|
148 |
|
149 |
-
|
|
|
150 |
selectors.push( attr );
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
var attr = $( item ).attr( 'rel' );
|
155 |
|
156 |
-
|
157 |
-
|
158 |
}
|
159 |
} );
|
160 |
|
161 |
if ( selectors.length > 0 ) {
|
|
|
162 |
// make unique
|
163 |
selectors = $.unique( selectors );
|
164 |
|
@@ -183,24 +183,24 @@
|
|
183 |
$( 'a[rel*="' + rlArgs.selector + '"], a[data-rel*="' + rlArgs.selector + '"]' ).each( function ( i, item ) {
|
184 |
var attr = $( item ).attr( 'data-rel' );
|
185 |
|
186 |
-
|
|
|
187 |
selectors.push( attr );
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
var attr = $( item ).attr( 'rel' );
|
192 |
|
193 |
-
|
194 |
-
|
195 |
}
|
196 |
} );
|
197 |
|
198 |
if ( selectors.length > 0 ) {
|
|
|
199 |
// make unique
|
200 |
selectors = $.unique( selectors );
|
201 |
|
202 |
$( selectors ).each( function ( i, item ) {
|
203 |
-
|
204 |
$( 'a[data-rel="' + item + '"], a[rel="' + item + '"]' ).tosrus( {
|
205 |
infinite : ( rlArgs.infinite === '1' ? true : false ),
|
206 |
autoplay : {
|
19 |
selector = event.selector
|
20 |
args = event.args;
|
21 |
|
22 |
+
if ( typeof script === 'undefined' || typeof selector === 'undefined' ) {
|
23 |
return false;
|
24 |
}
|
25 |
|
110 |
case 'nivo':
|
111 |
|
112 |
$.each( $( 'a[rel*="' + rlArgs.selector + '"], a[data-rel*="' + rlArgs.selector + '"]' ), function () {
|
|
|
113 |
var attr = $( this ).attr( 'data-rel' );
|
114 |
|
115 |
+
// check data-rel attribute first
|
116 |
+
if ( typeof attr === 'undefined' || attr == false ) {
|
117 |
+
// if not found then try to check rel attribute for backward compatibility
|
118 |
attr = $( this ).attr( 'rel' );
|
119 |
}
|
120 |
|
121 |
+
// for some browsers, `attr` is undefined; for others, `attr` is false. Check for both.
|
122 |
+
if ( typeof attr !== 'undefined' && attr !== false ) {
|
|
|
123 |
var match = attr.match( new RegExp( rlArgs.selector + '\\-(gallery\\-(?:[\\da-z]{1,4}))', 'ig' ) );
|
124 |
|
125 |
if ( match !== null ) {
|
145 |
$( 'a[rel*="' + rlArgs.selector + '"], a[data-rel*="' + rlArgs.selector + '"]' ).each( function ( i, item ) {
|
146 |
var attr = $( item ).attr( 'data-rel' );
|
147 |
|
148 |
+
// check data-rel attribute first
|
149 |
+
if ( typeof attr !== 'undefined' && attr !== false && attr !== 'norl' )
|
150 |
selectors.push( attr );
|
151 |
+
// if not found then try to check rel attribute for backward compatibility
|
152 |
+
else {
|
153 |
+
attr = $( item ).attr( 'rel' );
|
|
|
154 |
|
155 |
+
if ( typeof attr !== 'undefined' && attr !== false && attr !== 'norl' )
|
156 |
+
selectors.push( attr );
|
157 |
}
|
158 |
} );
|
159 |
|
160 |
if ( selectors.length > 0 ) {
|
161 |
+
|
162 |
// make unique
|
163 |
selectors = $.unique( selectors );
|
164 |
|
183 |
$( 'a[rel*="' + rlArgs.selector + '"], a[data-rel*="' + rlArgs.selector + '"]' ).each( function ( i, item ) {
|
184 |
var attr = $( item ).attr( 'data-rel' );
|
185 |
|
186 |
+
// check data-rel attribute first
|
187 |
+
if ( typeof attr !== 'undefined' && attr !== false && attr !== 'norl' )
|
188 |
selectors.push( attr );
|
189 |
+
// if not found then try to check rel attribute for backward compatibility
|
190 |
+
else {
|
191 |
+
attr = $( item ).attr( 'rel' );
|
|
|
192 |
|
193 |
+
if ( typeof attr !== 'undefined' && attr !== false && attr !== 'norl' )
|
194 |
+
selectors.push( attr );
|
195 |
}
|
196 |
} );
|
197 |
|
198 |
if ( selectors.length > 0 ) {
|
199 |
+
|
200 |
// make unique
|
201 |
selectors = $.unique( selectors );
|
202 |
|
203 |
$( selectors ).each( function ( i, item ) {
|
|
|
204 |
$( 'a[data-rel="' + item + '"], a[rel="' + item + '"]' ).tosrus( {
|
205 |
infinite : ( rlArgs.infinite === '1' ? true : false ),
|
206 |
autoplay : {
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.dfactory.eu/
|
|
4 |
Tags: gallery, images, lightbox, links, photos, template, theme, photo, image, picture, slideshow, modal, overlay, YouTube, Vimeo, video, videos
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 4.3.1
|
7 |
-
Stable tag: 1.6.
|
8 |
License: MIT License
|
9 |
License URI: http://opensource.org/licenses/MIT
|
10 |
|
@@ -74,6 +74,11 @@ No questions yet.
|
|
74 |
|
75 |
== Changelog ==
|
76 |
|
|
|
|
|
|
|
|
|
|
|
77 |
= 1.6.2 =
|
78 |
* New: Disable lightbox for single images with data-rel="norl" attribute
|
79 |
* Tweak: Keep rel attribute intact if used in post content links
|
@@ -259,7 +264,7 @@ Initial release
|
|
259 |
|
260 |
== Upgrade Notice ==
|
261 |
|
262 |
-
= 1.6.
|
263 |
-
*
|
264 |
-
*
|
265 |
-
* Tweak:
|
4 |
Tags: gallery, images, lightbox, links, photos, template, theme, photo, image, picture, slideshow, modal, overlay, YouTube, Vimeo, video, videos
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 4.3.1
|
7 |
+
Stable tag: 1.6.3
|
8 |
License: MIT License
|
9 |
License URI: http://opensource.org/licenses/MIT
|
10 |
|
74 |
|
75 |
== Changelog ==
|
76 |
|
77 |
+
= 1.6.3 =
|
78 |
+
* Fix: Tos"R"Us script initialized multiple times in Ajax
|
79 |
+
* Fix: Regex issue with replacing rel attribute
|
80 |
+
* Tweak: Swipebox updated to 1.4.1
|
81 |
+
|
82 |
= 1.6.2 =
|
83 |
* New: Disable lightbox for single images with data-rel="norl" attribute
|
84 |
* Tweak: Keep rel attribute intact if used in post content links
|
264 |
|
265 |
== Upgrade Notice ==
|
266 |
|
267 |
+
= 1.6.3 =
|
268 |
+
* Fix: Tos"R"Us script initialized multiple times in Ajax
|
269 |
+
* Fix: Regex issue with replacing rel attribute
|
270 |
+
* Tweak: Swipebox updated to 1.4.1
|
responsive-lightbox.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name: Responsive Lightbox
|
4 |
Description: Responsive Lightbox allows users to view larger versions of images and galleries in a lightbox (overlay) effect optimized for mobile devices.
|
5 |
-
Version: 1.6.
|
6 |
Author: dFactory
|
7 |
Author URI: http://www.dfactory.eu/
|
8 |
Plugin URI: http://www.dfactory.eu/plugins/responsive-lightbox/
|
@@ -36,7 +36,7 @@ include_once( RESPONSIVE_LIGHTBOX_PATH . 'includes/class-settings.php' );
|
|
36 |
* Responsive Lightbox class.
|
37 |
*
|
38 |
* @class Responsive_Lightbox
|
39 |
-
* @version 1.6.
|
40 |
*/
|
41 |
class Responsive_Lightbox {
|
42 |
|
@@ -146,7 +146,7 @@ class Responsive_Lightbox {
|
|
146 |
'pagination_type' => 'thumbnails'
|
147 |
)
|
148 |
),
|
149 |
-
'version' => '1.6.
|
150 |
);
|
151 |
public $options = array();
|
152 |
private $notices = array();
|
2 |
/*
|
3 |
Plugin Name: Responsive Lightbox
|
4 |
Description: Responsive Lightbox allows users to view larger versions of images and galleries in a lightbox (overlay) effect optimized for mobile devices.
|
5 |
+
Version: 1.6.3
|
6 |
Author: dFactory
|
7 |
Author URI: http://www.dfactory.eu/
|
8 |
Plugin URI: http://www.dfactory.eu/plugins/responsive-lightbox/
|
36 |
* Responsive Lightbox class.
|
37 |
*
|
38 |
* @class Responsive_Lightbox
|
39 |
+
* @version 1.6.3
|
40 |
*/
|
41 |
class Responsive_Lightbox {
|
42 |
|
146 |
'pagination_type' => 'thumbnails'
|
147 |
)
|
148 |
),
|
149 |
+
'version' => '1.6.3'
|
150 |
);
|
151 |
public $options = array();
|
152 |
private $notices = array();
|