From f824cb9aa88576791b37bea736029b9c3f5107e1 Mon Sep 17 00:00:00 2001 From: Andrew Kos Date: Fri, 18 Sep 2015 14:32:40 -0500 Subject: [PATCH] Version to 0.0.9 --- bower.json | 2 +- dist/jquery.instagram-embed-processor.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bower.json b/bower.json index 0c3730c..7afdf48 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "bulbs-public-embed-instagram", - "version": "0.0.8", + "version": "0.0.9", "main": [ "dist/jquery.instagram-embed-processor.js" ], diff --git a/dist/jquery.instagram-embed-processor.js b/dist/jquery.instagram-embed-processor.js index eb3b15a..a8acc0a 100644 --- a/dist/jquery.instagram-embed-processor.js +++ b/dist/jquery.instagram-embed-processor.js @@ -20,10 +20,10 @@ InstagramEmbedProcessor.prototype._getInstagramEmbedScript = function () { var self = this; $.getScript(this._settings.instagramEmbedScriptUrl) .done(function () { - self.shared.instagramLoaded.resolve(); + self._shared.instagramLoaded.resolve(); }) .fail(function () { - self.shared.instagramLoaded.reject(arguments); + self._shared.instagramLoaded.reject(arguments); console.error('Unable to load instagram embed script!', arguments); }); }