BUGFIX: TreeDropdownField wasnt closing, because the closePanel method is in an entwine namespace

This commit is contained in:
Hamish Friedlander 2012-06-15 10:04:36 +12:00 committed by Ingo Schommer
parent 40cef4d584
commit 8ae4597a85

View File

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