BUGFIX: workaround for drag not firing when adding options

This commit is contained in:
Will Rossiter 2011-12-05 21:57:34 +13:00
parent a81a164bcf
commit 958677bc44
1 changed files with 5 additions and 2 deletions

View File

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