var Audio = require('./modules/audio');
var Video = require('./modules/video');
var VideoOverlay = require('./modules/video-overlay');
+var Instagram = require('./modules/instagram');
//
// Init all the modules
window[Audio] = new Audio();
window['Video'] = new Video();
window[VideoOverlay] = new VideoOverlay();
+window[Instagram] = new Instagram();
--- /dev/null
+var Instagram = function() {
+
+ this.feed = null;
+
+ //
+ // Init
+ //
+ this.init();
+
+};
+
+Instagram.prototype.init = function() {
+
+ var that = this;
+
+
+};
+
+module.exports = Instagram;
that.$overlayContent.load(url, function() {
- window['Video'].init();
+ var player = window['Video'].init();
setTimeout(function() {
+ player.play();
that.$overlayLoader.hide();
that.$overlayContent.addClass('loaded');
}, 2000);