Skip to content

Commit

Permalink
Add compiled assets we haven't generated yet
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmire committed Apr 3, 2012
1 parent 6e9c757 commit ec640d2
Show file tree
Hide file tree
Showing 6 changed files with 476 additions and 0 deletions.
14 changes: 14 additions & 0 deletions public/javascripts/app/editor/dnd.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
(function() {

define('editor.dnd', function() {
return {
startDraggingWith: function(dragObject) {
this.dragObject = dragObject;
},
stopDragging: function() {
return this.dragObject = null;
}
};
});

}).call(this);
241 changes: 241 additions & 0 deletions public/javascripts/app/editor/drag_object.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

142 changes: 142 additions & 0 deletions public/javascripts/app/editor/drop_target.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit ec640d2

Please sign in to comment.