2012-10-31 94 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

相关问题