diff options
Diffstat (limited to 'js/dojo/dojox/mobile/EdgeToEdgeList.js')
| -rw-r--r-- | js/dojo/dojox/mobile/EdgeToEdgeList.js | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/js/dojo/dojox/mobile/EdgeToEdgeList.js b/js/dojo/dojox/mobile/EdgeToEdgeList.js new file mode 100644 index 0000000..16ca81e --- /dev/null +++ b/js/dojo/dojox/mobile/EdgeToEdgeList.js @@ -0,0 +1,29 @@ +//>>built +define("dojox/mobile/EdgeToEdgeList", [ + "dojo/_base/declare", + "./RoundRectList" +], function(declare, RoundRectList){ + +/*===== + var RoundRectList = dojox.mobile.RoundRectList; +=====*/ + + // module: + // dojox/mobile/EdgeToEdgeCategory + // summary: + // An edge-to-edge layout list. + + return declare("dojox.mobile.EdgeToEdgeList", RoundRectList, { + // summary: + // An edge-to-edge layout list. + // description: + // EdgeToEdgeList is an edge-to-edge layout list, which displays + // all items in equally sized rows. Each item must be + // dojox.mobile.ListItem. + + buildRendering: function(){ + this.inherited(arguments); + this.domNode.className = "mblEdgeToEdgeList"; + } + }); +}); |
