mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-11-03 17:13:05 +00:00
Don't crash for edit enginges that don't support cancelPopups
This commit is contained in:
@@ -158,7 +158,9 @@ FramedEngine.prototype.focus = function() {
|
||||
Handle the focus event
|
||||
*/
|
||||
FramedEngine.prototype.handleFocusEvent = function(event) {
|
||||
this.widget.cancelPopups();
|
||||
if(this.widget.cancelPopups) {
|
||||
this.widget.cancelPopups();
|
||||
}
|
||||
return true;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user