From b0e7ebfabb1cc4fceb4406095a90052512cd6dfa Mon Sep 17 00:00:00 2001
From: Sergey veged Berezhnoy <“[email protected]”>
Date: Fri, 14 Nov 2008 18:16:48 +0300
Subject: [PATCH] Fix bug with drag elements in sortable when page scroll downmost.
---
ui/ui.sortable.js | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
mode change 100755 => 100644 ui/ui.sortable.js
diff --git a/ui/ui.sortable.js b/ui/ui.sortable.js
old mode 100755
new mode 100644
index e9f3ad3..15b04d1
a
|
b
|
$.widget("ui.sortable", $.extend({}, $.ui.mouse, { |
43 | 43 | //Initialize mouse events for interaction |
44 | 44 | this._mouseInit(); |
45 | 45 | |
| 46 | if(o.fixHeight) { |
| 47 | this.element.height(this.element.height()); |
| 48 | } |
46 | 49 | }, |
47 | 50 | plugins: {}, |
48 | 51 | ui: function(inst) { |