mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
BUGFIX: TreeDropdownField wasnt closing, because the closePanel method is in an entwine namespace
This commit is contained in:
parent
40cef4d584
commit
8ae4597a85
@ -16,7 +16,7 @@
|
||||
|
||||
var _clickTestFn = function(e) {
|
||||
// If the click target is not a child of the current field, close the panel automatically.
|
||||
if(!$(e.target).parents('.TreeDropdownField').length) jQuery('.TreeDropdownField').closePanel();
|
||||
if(!$(e.target).parents('.TreeDropdownField').length) $('.TreeDropdownField').closePanel();
|
||||
};
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user