Skip to content

Instantly share code, notes, and snippets.

@unscriptable
Created December 29, 2010 03:03
Show Gist options
  • Save unscriptable/758104 to your computer and use it in GitHub Desktop.
Save unscriptable/758104 to your computer and use it in GitHub Desktop.
<!-- 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