Changeset 2471
- Timestamp:
- 07/24/07 09:42:55 (2 years ago)
- Files:
-
- 1 modified
-
trunk/plugins/ui/tests/drag_3d.html (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/plugins/ui/tests/drag_3d.html
r2444 r2471 74 74 75 75 $('#demo1').draggable({ 76 start: function( helper, pos, cursorAt, that) {76 start: function(e,ui) { 77 77 78 var that = ui.draggable; 78 79 var w = $(window).width(); 79 80 var h = $(window).height(); … … 91 92 92 93 }, 93 stop: function( helper, pos, cursorAt, that) {94 stop: function(e,ui) { 94 95 95 96 $(".original",this).animate({ top: 0, left: 0 }, 500); 96 97 $(".shadow",this).animate({ top: 0, left: 0 }, 500); 97 98 }, 98 drag: function( helper, pos, cursorAt, that) {99 drag: function(e,ui) { 99 100 101 var that = ui.draggable; 100 102 if(that.isBeingAnimated) return false; 101 103
