You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
516 B
21 lines
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"; |
|
} |
|
} |
|
}); |
|
});
|
|
|