-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Mike Wilcox
committed
Jul 3, 2012
1 parent
68ba010
commit 66b2dc9
Showing
3 changed files
with
15 additions
and
24 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,23 @@ | ||
define([ | ||
|
||
'./shim', | ||
'./dom', | ||
'./fx', | ||
'./groups', | ||
'./has', | ||
'./lang', | ||
'./log', | ||
'./mouse', | ||
'./on', | ||
'./string', | ||
'./fx', | ||
'./topic' | ||
], function(){ | ||
|
||
var dj = require.argsToObject('dx-alias/all'); | ||
// './parser!', // plugin. Pull this in on your own. | ||
// './ani', //under development | ||
// './Widget', //if you use Widget, pull it in specifically. | ||
|
||
var log = dj.log('ALL', 1); | ||
], function(){ // look ma! No args! | ||
|
||
//log('test dom:', dj.dom); | ||
log('test lang:', dj.lang); | ||
log('test mouse:', dj.mouse); | ||
//log('test on:', dj.on); | ||
log('test string:', dj.string); | ||
log('test fx:', dj.fx); | ||
log('test topic:', dj.topic); | ||
return require.argsToObject('dx-alias/all'); | ||
|
||
return dj; | ||
}); |
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
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