Created
December 29, 2010 03:03
-
-
Save unscriptable/758104 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- dojo 1.x: all is well --> | |
<button dojotype="li.widget.Button" type="button" class="flat">Flat button</button> | |
<!-- dojo 1.6 html5 type and params attr --> | |
<button data-dojo-type="li.widget.Button" data-dojo-params="type:'button', class:'primary'">Primary button</button> | |
<!-- dojo 1.6 html5 type and native attrs: DOES NOT PICK UP ATTRS! --> | |
<button data-dojo-type="li.widget.Button" type="button" class="secondary">Secondary button</button> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment