All Downloads are FREE. Search and download functionalities are using the official Maven repository.

META-INF.resources.primefaces.mobile.widgets.menu.js Maven / Gradle / Ivy

There is a newer version: 14.0.0-RC3
Show newest version
/**
 * PrimeFaces Mobile Menu Widget
 */
PrimeFaces.widget.PlainMenu = PrimeFaces.widget.BaseWidget.extend({
    
    init: function(cfg) {
        this._super(cfg);
        
        this.items = this.jq.children('li');
        this.items.filter(':first-child').addClass('ui-first-child');
        this.items.filter(':last-child').addClass('ui-last-child');
    }
});

/**
 * PrimeFaces Mobile TabMenu Widget
 */
PrimeFaces.widget.TabMenu = PrimeFaces.widget.BaseWidget.extend({
    
    init: function(cfg) {
        this._super(cfg);
        this.links = this.jq.find('a.ui-link');
        this.links.eq(this.cfg.activeIndex).addClass('ui-btn-active');
        
        this.jq.navbar();
    }
});




© 2015 - 2024 Weber Informatics LLC | Privacy Policy