Bug Tracker

Changeset 4516

Show
Ignore:
Timestamp:
01/23/08 10:05:37 (1 year ago)
Author:
paul.bakaus
Message:

- fixed a issues that prevented removeMouseInteraction from working

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/ui/current/ui.mouse.js

    r4341 r4516  
    4040        removeMouseInteraction: function(o) { 
    4141            return this.each(function() { 
    42                 if($.data(this.element, "ui-mouse")) 
    43                     $.data(this.element, "ui-mouse").destroy(); 
     42                if($.data(this, "ui-mouse")) 
     43                    $.data(this, "ui-mouse").destroy(); 
    4444            }); 
    4545        }