Sha256: ff393f5d1d04ebccfded782931e1e9f970cd2ef0ace38f6d2e4d4068a9d044bf
Contents?: true
Size: 997 Bytes
Versions: 1
Compression:
Stored size: 997 Bytes
Contents
define("dojox/mobile/RoundRect", [ "dojo/_base/declare", "dojo/dom-class", "./Container" ], function(declare, domClass, Container){ // module: // dojox/mobile/RoundRect return declare("dojox.mobile.RoundRect", Container, { // summary: // A simple round rectangle container. // description: // RoundRect is a simple round rectangle container for any HTML // and/or widgets. You can achieve the same appearance by just // applying the -webkit-border-radius style to a div tag. However, // if you use RoundRect, you can get a round rectangle even on // non-CSS3 browsers such as (older) IE. // shadow: Boolean // If true, adds a shadow effect to the container element. shadow: false, /* internal properties */ // baseClass: String // The name of the CSS class of this widget. baseClass: "mblRoundRect", buildRendering: function(){ this.inherited(arguments); if(this.shadow){ domClass.add(this.domNode, "mblShadow"); } } }); });
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
dojox-rails-0.11.0 | vendor/assets/javascripts/mobile/RoundRect.js.uncompressed.js |