mirror of
https://github.com/TiddlyWiki/TiddlyWiki5.git
synced 2026-05-02 14:57:20 +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