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(); });