Вход Регистрация
Файл: upload/assets/jquery.gfeed.js
Строк: 33
<?php
/**
 *  Plugin which uses the Google AJAX Feed API for creating feed content
 *  @author:  M. Alsup (malsup at gmail dot com)
 *  @version: 1.0.2 (5/11/2007)
 *  Documentation and examples at: http://www.malsup.com/jquery/gfeed/
 *  Free beer and free speech. Enjoy!
 */
(function($) {

if (!
window.google)  {
    
alert('You must include the Google AJAX Feed API script');
    return;
}    

if (!
google.feedsgoogle.load("feeds""1");

$.fn.
gFeed = function(options) {
    var 
opts jQuery.extend({
        
targetthis,
        
max:   5   // max number of items per feed
    
}, options || {});
    
    var 
= new google.feeds.FeedControl();

    
this.each(function() {
        var 
url this.href || opts.url;
        var 
title opts.title || this.title || $(this).text();
        
g.addFeed(urltitle);
        
g.setNumEntries(opts.max);
    });
    
    $(
opts.target).each(function() {
        
g.draw(thisopts.tabs ? { drawModegoogle.feeds.FeedControl.DRAW_MODE_TABBED } : null );
    });
    
    return 
this;
};

})(
jQuery);
?>
Онлайн: 2
Реклама