2012-10-31 91 views

回答

0

改變_mouseCapture方法在jQuery UI的可調整大小的小工具,這使得它的工作:

_mouseCapture: function(event) { 
    var capture = false; 
    for (var i in this.handles) { 
     var handle = $(this.handles[i])[0]; 
     if (handle == event.target || $.contains(handle, event.target)) { 
      capture = true; 
     } 
    } 

    return !this.options.disabled && capture; 
}, 

我還創建了票,爲此拉要求:

http://bugs.jqueryui.com/ticket/8756

相關問題