mirror of
https://github.com/silverstripe/silverstripe-userforms.git
synced 2024-10-22 15:05:42 +00:00
BUGFIX: workaround for drag not firing when adding options
This commit is contained in:
parent
a81a164bcf
commit
958677bc44
@ -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();
|
userforms.update();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user