Version Description
- Fix: Fixed an issue where photos wouldn't appear in the Instagram feed if it was initially being hidden inside of a tab or some other element
- Fix: Fixed an issue where the new image cropping fuction was failing to run on some sites and causing the images to appear as blank
Download this release
Release Info
Developer | smashballoon |
Plugin | Instagram Feed |
Version | 1.3.9 |
Comparing to | |
See all releases |
Code changes from version 1.3.8 to 1.3.9
- README.txt +5 -1
- css/sb-instagram.css +0 -1
- instagram-feed.php +2 -2
- js/sb-instagram.js +16 -17
README.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: smashballoon
|
|
3 |
Tags: Instagram, Instagram feed, Instagram photos, Instagram plugin, Instagram stream, Custom Instagram Feed, responsive Instagram, mobile Instagram, Instagram posts, Instagram wall, Instagram account
|
4 |
Requires at least: 3.0
|
5 |
Tested up to: 4.3.1
|
6 |
-
Stable tag: 1.3.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -186,6 +186,10 @@ For more FAQs related to the Instagram Feed plugin please visit the [FAQ section
|
|
186 |
7. The Instagram Feed plugin Settings pages
|
187 |
|
188 |
== Changelog ==
|
|
|
|
|
|
|
|
|
189 |
= 1.3.8 =
|
190 |
* Fix: If you have uploaded a photo in portrait or landscape then the plugin will now display the square cropped version of the photo in your feed
|
191 |
|
3 |
Tags: Instagram, Instagram feed, Instagram photos, Instagram plugin, Instagram stream, Custom Instagram Feed, responsive Instagram, mobile Instagram, Instagram posts, Instagram wall, Instagram account
|
4 |
Requires at least: 3.0
|
5 |
Tested up to: 4.3.1
|
6 |
+
Stable tag: 1.3.9
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
186 |
7. The Instagram Feed plugin Settings pages
|
187 |
|
188 |
== Changelog ==
|
189 |
+
= 1.3.9 =
|
190 |
+
* Fix: Fixed an issue where photos wouldn't appear in the Instagram feed if it was initially being hidden inside of a tab or some other element
|
191 |
+
* Fix: Fixed an issue where the new image cropping fuction was failing to run on some sites and causing the images to appear as blank
|
192 |
+
|
193 |
= 1.3.8 =
|
194 |
* Fix: If you have uploaded a photo in portrait or landscape then the plugin will now display the square cropped version of the photo in your feed
|
195 |
|
css/sb-instagram.css
CHANGED
@@ -84,7 +84,6 @@
|
|
84 |
#sb_instagram .sbi_photo{
|
85 |
display: block;
|
86 |
text-decoration: none;
|
87 |
-
height: 200px;
|
88 |
}
|
89 |
#sb_instagram a,
|
90 |
#sb_instagram a:hover,
|
84 |
#sb_instagram .sbi_photo{
|
85 |
display: block;
|
86 |
text-decoration: none;
|
|
|
87 |
}
|
88 |
#sb_instagram a,
|
89 |
#sb_instagram a:hover,
|
instagram-feed.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Instagram Feed
|
4 |
Plugin URI: http://smashballoon.com/instagram-feed
|
5 |
Description: Display beautifully clean, customizable, and responsive Instagram feeds
|
6 |
-
Version: 1.3.
|
7 |
Author: Smash Balloon
|
8 |
Author URI: http://smashballoon.com/
|
9 |
License: GPLv2 or later
|
@@ -22,7 +22,7 @@ along with this program; if not, write to the Free Software
|
|
22 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
23 |
*/
|
24 |
|
25 |
-
define( 'SBIVER', '1.3.
|
26 |
|
27 |
//Include admin
|
28 |
include dirname( __FILE__ ) .'/instagram-feed-admin.php';
|
3 |
Plugin Name: Instagram Feed
|
4 |
Plugin URI: http://smashballoon.com/instagram-feed
|
5 |
Description: Display beautifully clean, customizable, and responsive Instagram feeds
|
6 |
+
Version: 1.3.9
|
7 |
Author: Smash Balloon
|
8 |
Author URI: http://smashballoon.com/
|
9 |
License: GPLv2 or later
|
22 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
23 |
*/
|
24 |
|
25 |
+
define( 'SBIVER', '1.3.9' );
|
26 |
|
27 |
//Include admin
|
28 |
include dirname( __FILE__ ) .'/instagram-feed-admin.php';
|
js/sb-instagram.js
CHANGED
@@ -9,9 +9,8 @@ if(!sbi_js_exists){
|
|
9 |
//IE8 also doesn't offer the .bind() method triggered by the 'sortBy' property. Copy and paste the polyfill offered here:
|
10 |
if(!Function.prototype.bind){Function.prototype.bind=function(e){if(typeof this!=="function"){throw new TypeError("Function.prototype.bind - what is trying to be bound is not callable")}var t=Array.prototype.slice.call(arguments,1),n=this,r=function(){},i=function(){return n.apply(this instanceof r&&e?this:e,t.concat(Array.prototype.slice.call(arguments)))};r.prototype=this.prototype;i.prototype=new r;return i}}
|
11 |
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
|
16 |
function sbi_init(){
|
17 |
|
@@ -145,10 +144,13 @@ if(!sbi_js_exists){
|
|
145 |
// Call Custom JS if it exists
|
146 |
if (typeof sbi_custom_js == 'function') setTimeout(function(){ sbi_custom_js(); }, 100);
|
147 |
|
|
|
|
|
|
|
148 |
|
149 |
// Use imagefill to set the images as backgrounds so they can be square
|
150 |
!function () {
|
151 |
-
var css =
|
152 |
head = document.getElementsByTagName('head')[0],
|
153 |
style = document.createElement('style');
|
154 |
style.type = 'text/css';
|
@@ -159,7 +161,7 @@ if(!sbi_js_exists){
|
|
159 |
}
|
160 |
head.appendChild(style);
|
161 |
}();
|
162 |
-
$self.find(".sbi_photo").
|
163 |
|
164 |
//Only check the width once the resize event is over
|
165 |
var sbi_delay = (function(){
|
@@ -169,9 +171,12 @@ if(!sbi_js_exists){
|
|
169 |
sbi_timer = setTimeout(sbi_callback, sbi_ms);
|
170 |
};
|
171 |
})();
|
|
|
|
|
172 |
window.addEventListener('resize', function(event){
|
173 |
sbi_delay(function(){
|
174 |
sbiSetPhotoHeight();
|
|
|
175 |
}, 500);
|
176 |
});
|
177 |
|
@@ -182,18 +187,12 @@ if(!sbi_js_exists){
|
|
182 |
}
|
183 |
sbiSetPhotoHeight();
|
184 |
|
185 |
-
//
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
};
|
192 |
-
})();
|
193 |
-
jQuery(window).resize(function() {
|
194 |
-
sbidelay(function(){
|
195 |
-
sbiGetItemSize();
|
196 |
-
}, 500);
|
197 |
});
|
198 |
|
199 |
function sbiGetItemSize(){
|
9 |
//IE8 also doesn't offer the .bind() method triggered by the 'sortBy' property. Copy and paste the polyfill offered here:
|
10 |
if(!Function.prototype.bind){Function.prototype.bind=function(e){if(typeof this!=="function"){throw new TypeError("Function.prototype.bind - what is trying to be bound is not callable")}var t=Array.prototype.slice.call(arguments,1),n=this,r=function(){},i=function(){return n.apply(this instanceof r&&e?this:e,t.concat(Array.prototype.slice.call(arguments)))};r.prototype=this.prototype;i.prototype=new r;return i}}
|
11 |
|
12 |
+
/* Detect when element becomes visible. Used for when the feed is initially hidden, in a tab for example. https://github.com/shaunbowe/jquery.visibilityChanged */
|
13 |
+
!function(i){var n={callback:function(){},runOnLoad:!0,frequency:100,sbiPreviousVisibility:null},c={};c.sbiCheckVisibility=function(i,n){if(jQuery.contains(document,i[0])){var e=n.sbiPreviousVisibility,t=i.is(":visible");n.sbiPreviousVisibility=t,null==e?n.runOnLoad&&n.callback(i,t):e!==t&&n.callback(i,t),setTimeout(function(){c.sbiCheckVisibility(i,n)},n.frequency)}},i.fn.sbiVisibilityChanged=function(e){var t=i.extend({},n,e);return this.each(function(){c.sbiCheckVisibility(i(this),t)})}}(jQuery);
|
|
|
14 |
|
15 |
function sbi_init(){
|
16 |
|
144 |
// Call Custom JS if it exists
|
145 |
if (typeof sbi_custom_js == 'function') setTimeout(function(){ sbi_custom_js(); }, 100);
|
146 |
|
147 |
+
//This needs to be here otherwise it results in the following error for some sites: $self.find(...).sbi_imgLiquid() is not a function.
|
148 |
+
/*! imgLiquid v0.9.944 / 03-05-2013 https://github.com/karacas/imgLiquid */
|
149 |
+
var sbi_imgLiquid=sbi_imgLiquid||{VER:"0.9.944"};sbi_imgLiquid.bgs_Available=!1,sbi_imgLiquid.bgs_CheckRunned=!1,sbi_imgLiquid.injectCss="#sb_instagram .sbi_photo img {visibility:hidden !important}",function(i){function t(){if(!sbi_imgLiquid.bgs_CheckRunned){sbi_imgLiquid.bgs_CheckRunned=!0;var t=i('<span style="background-size:cover" />');i("body").append(t),!function(){var i=t[0];if(i&&window.getComputedStyle){var e=window.getComputedStyle(i,null);e&&e.backgroundSize&&(sbi_imgLiquid.bgs_Available="cover"===e.backgroundSize)}}(),t.remove()}}i.fn.extend({sbi_imgLiquid:function(e){this.defaults={fill:!0,verticalAlign:"center",horizontalAlign:"center",useBackgroundSize:!0,useDataHtmlAttr:!0,responsive:!0,delay:0,fadeInTime:0,removeBoxBackground:!0,hardPixels:!0,responsiveCheckTime:500,timecheckvisibility:500,onStart:null,onFinish:null,onItemStart:null,onItemFinish:null,onItemError:null},t();var a=this;return this.options=e,this.settings=i.extend({},this.defaults,this.options),this.settings.onStart&&this.settings.onStart(),this.each(function(t){function e(){-1===u.css("background-image").indexOf(encodeURI(c.attr("src")))&&u.css({"background-image":'url("'+encodeURI(c.attr("src"))+'")'}),u.css({"background-size":g.fill?"cover":"contain","background-position":(g.horizontalAlign+" "+g.verticalAlign).toLowerCase(),"background-repeat":"no-repeat"}),i("a:first",u).css({display:"block",width:"100%",height:"100%"}),i("img",u).css({display:"none"}),g.onItemFinish&&g.onItemFinish(t,u,c),u.addClass("sbi_imgLiquid_bgSize"),u.addClass("sbi_imgLiquid_ready"),l()}function o(){function e(){c.data("sbi_imgLiquid_error")||c.data("sbi_imgLiquid_loaded")||c.data("sbi_imgLiquid_oldProcessed")||(u.is(":visible")&&c[0].complete&&c[0].width>0&&c[0].height>0?(c.data("sbi_imgLiquid_loaded",!0),setTimeout(r,t*g.delay)):setTimeout(e,g.timecheckvisibility))}if(c.data("oldSrc")&&c.data("oldSrc")!==c.attr("src")){var a=c.clone().removeAttr("style");return a.data("sbi_imgLiquid_settings",c.data("sbi_imgLiquid_settings")),c.parent().prepend(a),c.remove(),c=a,c[0].width=0,void setTimeout(o,10)}return c.data("sbi_imgLiquid_oldProcessed")?void r():(c.data("sbi_imgLiquid_oldProcessed",!1),c.data("oldSrc",c.attr("src")),i("img:not(:first)",u).css("display","none"),u.css({overflow:"hidden"}),c.fadeTo(0,0).removeAttr("width").removeAttr("height").css({visibility:"visible","max-width":"none","max-height":"none",width:"auto",height:"auto",display:"block"}),c.on("error",n),c[0].onerror=n,e(),void d())}function d(){(g.responsive||c.data("sbi_imgLiquid_oldProcessed"))&&c.data("sbi_imgLiquid_settings")&&(g=c.data("sbi_imgLiquid_settings"),u.actualSize=u.get(0).offsetWidth+u.get(0).offsetHeight/1e4,u.sizeOld&&u.actualSize!==u.sizeOld&&r(),u.sizeOld=u.actualSize,setTimeout(d,g.responsiveCheckTime))}function n(){c.data("sbi_imgLiquid_error",!0),u.addClass("sbi_imgLiquid_error"),g.onItemError&&g.onItemError(t,u,c),l()}function s(){var i={};if(a.settings.useDataHtmlAttr){var t=u.attr("data-sbi_imgLiquid-fill"),e=u.attr("data-sbi_imgLiquid-horizontalAlign"),o=u.attr("data-sbi_imgLiquid-verticalAlign");("true"===t||"false"===t)&&(i.fill=Boolean("true"===t)),void 0===e||"left"!==e&&"center"!==e&&"right"!==e&&-1===e.indexOf("%")||(i.horizontalAlign=e),void 0===o||"top"!==o&&"bottom"!==o&&"center"!==o&&-1===o.indexOf("%")||(i.verticalAlign=o)}return sbi_imgLiquid.isIE&&a.settings.ieFadeInDisabled&&(i.fadeInTime=0),i}function r(){var i,e,a,o,d,n,s,r,m=0,h=0,f=u.width(),v=u.height();void 0===c.data("owidth")&&c.data("owidth",c[0].width),void 0===c.data("oheight")&&c.data("oheight",c[0].height),g.fill===f/v>=c.data("owidth")/c.data("oheight")?(i="100%",e="auto",a=Math.floor(f),o=Math.floor(f*(c.data("oheight")/c.data("owidth")))):(i="auto",e="100%",a=Math.floor(v*(c.data("owidth")/c.data("oheight"))),o=Math.floor(v)),d=g.horizontalAlign.toLowerCase(),s=f-a,"left"===d&&(h=0),"center"===d&&(h=.5*s),"right"===d&&(h=s),-1!==d.indexOf("%")&&(d=parseInt(d.replace("%",""),10),d>0&&(h=s*d*.01)),n=g.verticalAlign.toLowerCase(),r=v-o,"left"===n&&(m=0),"center"===n&&(m=.5*r),"bottom"===n&&(m=r),-1!==n.indexOf("%")&&(n=parseInt(n.replace("%",""),10),n>0&&(m=r*n*.01)),g.hardPixels&&(i=a,e=o),c.css({width:i,height:e,"margin-left":Math.floor(h),"margin-top":Math.floor(m)}),c.data("sbi_imgLiquid_oldProcessed")||(c.fadeTo(g.fadeInTime,1),c.data("sbi_imgLiquid_oldProcessed",!0),g.removeBoxBackground&&u.css("background-image","none"),u.addClass("sbi_imgLiquid_nobgSize"),u.addClass("sbi_imgLiquid_ready")),g.onItemFinish&&g.onItemFinish(t,u,c),l()}function l(){t===a.length-1&&a.settings.onFinish&&a.settings.onFinish()}var g=a.settings,u=i(this),c=i("img:first",u);return c.length?(c.data("sbi_imgLiquid_settings")?(u.removeClass("sbi_imgLiquid_error").removeClass("sbi_imgLiquid_ready"),g=i.extend({},c.data("sbi_imgLiquid_settings"),a.options)):g=i.extend({},a.settings,s()),c.data("sbi_imgLiquid_settings",g),g.onItemStart&&g.onItemStart(t,u,c),void(sbi_imgLiquid.bgs_Available&&g.useBackgroundSize?e():o())):void n()})}})}(jQuery);
|
150 |
|
151 |
// Use imagefill to set the images as backgrounds so they can be square
|
152 |
!function () {
|
153 |
+
var css = sbi_imgLiquid.injectCss,
|
154 |
head = document.getElementsByTagName('head')[0],
|
155 |
style = document.createElement('style');
|
156 |
style.type = 'text/css';
|
161 |
}
|
162 |
head.appendChild(style);
|
163 |
}();
|
164 |
+
$self.find(".sbi_photo").sbi_imgLiquid({fill:true});
|
165 |
|
166 |
//Only check the width once the resize event is over
|
167 |
var sbi_delay = (function(){
|
171 |
sbi_timer = setTimeout(sbi_callback, sbi_ms);
|
172 |
};
|
173 |
})();
|
174 |
+
|
175 |
+
// jQuery(window).resize(function() {
|
176 |
window.addEventListener('resize', function(event){
|
177 |
sbi_delay(function(){
|
178 |
sbiSetPhotoHeight();
|
179 |
+
sbiGetItemSize();
|
180 |
}, 500);
|
181 |
});
|
182 |
|
187 |
}
|
188 |
sbiSetPhotoHeight();
|
189 |
|
190 |
+
//If the feed is initially hidden (in a tab for example) then check for when it becomes visible and set then set the height
|
191 |
+
jQuery(".sbi").filter(':hidden').sbiVisibilityChanged({
|
192 |
+
callback: function(element, visible) {
|
193 |
+
sbiSetPhotoHeight();
|
194 |
+
},
|
195 |
+
runOnLoad: false
|
|
|
|
|
|
|
|
|
|
|
|
|
196 |
});
|
197 |
|
198 |
function sbiGetItemSize(){
|