/** * Initialize the layout of a certain
* * @namespace LUNGO.View * @class Aside * * @author Javier Jimenez Villar || @soyjavi * @author Guillermo Pascual || @pasku1 */ LUNGO.View.Aside = (function(lng, undefined) { var toggle = function(section_id) { var articles = lng.Dom.query(section_id + ' article'); articles.toggleClass('aside'); }; return { toggle: toggle }; })(LUNGO);