UI News Reader - Backbone JS Plugin

Info

"UI News Reader" is backbone plugin that gets news from rss urls and shows in page easily. It requires BackboneJS, UnderscoreJS, jQuery and url that must response data in RSS JSON format.

It's created by İlker Güller.

Attributes

SASS Attributes

Example

Basic
$(document).ready(function(){
  var bbNewsReader = new Backbone.UINewsReader({
    el: ".testComponent",
    url: "http://pipes.yahoo.com/pipes/pipe.run?_id=DqsF_ZG72xGLbes9l7okhQ&_render=json&_callback="
  });
});
With Attributes
$(document).ready(function(){
  var bbNewsReader2 = new Backbone.UINewsReader({
    el: ".testComponent",
    url: "http://pipes.yahoo.com/pipes/pipe.run?_id=DqsF_ZG72xGLbes9l7okhQ&_render=json&_callback=",
    requireImages: false,
    changeTitle: true,
    changeUrlPath: true
  });
});