From 958677bc4409d9141e38df5b8baad4c45f792484 Mon Sep 17 00:00:00 2001 From: Will Rossiter Date: Mon, 5 Dec 2011 21:57:34 +1300 Subject: [PATCH] BUGFIX: workaround for drag not firing when adding options --- javascript/UserForm.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/javascript/UserForm.js b/javascript/UserForm.js index 0d223d2..b6a02c4 100644 --- a/javascript/UserForm.js +++ b/javascript/UserForm.js @@ -85,9 +85,12 @@ }; /** - * Workaround for not refreshing the sort + * Workaround for not refreshing the sort. + * + * TODO: better solution would to not fire this on every hover but needs to + * ensure it doesn't have edge cases. The sledge hammer approach. */ - $(".fieldHandler").live('hover', function() { + $(".fieldHandler, .handle").live('hover', function() { userforms.update(); });