mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-09-02 19:08:02 +00:00
Fixed problem with tag dropdowns in Firefox
This commit is contained in:
@@ -68,7 +68,7 @@ exports.handleEvent = function(event) {
|
||||
event.preventDefault();
|
||||
return false;
|
||||
case "tw-cancel-popup":
|
||||
if(this.hasParameter("popup") && !$tw.utils.domContains(this.domNode,event.targetOfCancel)) {
|
||||
if(this.hasParameter("popup") && this.domNode !== event.targetOfCancel && !$tw.utils.domContains(this.domNode,event.targetOfCancel)) {
|
||||
this.triggerPopup(event,true);
|
||||
}
|
||||
break;
|
||||
|
Reference in New Issue
Block a user