Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
kriszyp committed Jan 3, 2011
0 parents commit e6860fe
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
8 changes: 8 additions & 0 deletions lib/demo.js
@@ -0,0 +1,8 @@
define(["dojo"], function(dojo){
dojo.ready(function(){
var helloDiv = dojo.create("div", {
innerHTML: "Hello World"
}, document.body);
dojo.fadeIn(helloDiv);
});
});
20 changes: 20 additions & 0 deletions package.json
@@ -0,0 +1,20 @@
{
"name": "commonjs-package-template",
"mappings": {
"dojo": "https://github.com/dojo/dojo/zipball/v1.6.0alpha1"
},
"description": "Template for CommonJS packages",
"licenses": [
{
"type": "AFLv2.1",
"url": "http://trac.dojotoolkit.org/browser/dojo/trunk/LICENSE#L43"
},
{
"type": "BSD",
"url": "http://trac.dojotoolkit.org/browser/dojo/trunk/LICENSE#L13"
}
],
"bugs": "http://bugs.dojotoolkit.org/",
"keywords": ["Template"],
"homepage": "http://dojotoolkit.org/"
}

0 comments on commit e6860fe

Please sign in to comment.