UNPKG

dojox

Version:

Dojo eXtensions, a rollup of many useful sub-projects and varying states of maturity – from very stable and robust, to alpha and experimental. See individual projects contain README files for details.

22 lines (18 loc) 516 B
define([ "dojo/_base/declare", "./RoundRectCategory" ], function(declare, RoundRectCategory){ // module: // dojox/mobile/EdgeToEdgeCategory return declare("dojox.mobile.EdgeToEdgeCategory", RoundRectCategory, { // summary: // A category header for an edge-to-edge list. buildRendering: function(){ this.inherited(arguments); this.domNode.className = "mblEdgeToEdgeCategory"; if(this.type && this.type == "long"){ this.domNode.className += " mblEdgeToEdgeCategoryLong"; } } }); });