Created
February 4, 2016 19:11
-
-
Save thollingshead/24f78e29bacb5467a3de to your computer and use it in GitHub Desktop.
Sublime snippet for Dojo module boilerplate.
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
<snippet> | |
<content><![CDATA[ | |
define([ | |
${1:'dojo/_base/declare'} | |
], function( | |
${2:declare} | |
) { | |
return declare([$3], { | |
$4 | |
}); | |
}); | |
]]></content> | |
<tabTrigger>define()</tabTrigger> | |
<scope>source.js</scope> | |
</snippet> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment