Bug Tracker

Changeset 2471

Show
Ignore:
Timestamp:
07/24/07 09:42:55 (2 years ago)
Author:
paul.bakaus
Message:

updated 3d demo

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/plugins/ui/tests/drag_3d.html

    r2444 r2471  
    7474     
    7575    $('#demo1').draggable({ 
    76      start: function(helper, pos, cursorAt, that) { 
     76     start: function(e,ui) { 
    7777 
     78            var that = ui.draggable; 
    7879            var w = $(window).width(); 
    7980            var h = $(window).height(); 
     
    9192             
    9293     }, 
    93      stop: function(helper, pos, cursorAt, that) { 
     94     stop: function(e,ui) { 
    9495     
    9596            $(".original",this).animate({ top: 0, left: 0 }, 500); 
    9697            $(".shadow",this).animate({ top: 0, left: 0 }, 500); 
    9798     }, 
    98      drag: function(helper, pos, cursorAt, that) { 
     99     drag: function(e,ui) { 
    99100 
     101            var that = ui.draggable; 
    100102            if(that.isBeingAnimated) return false; 
    101103