1
0
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:
Jeremy Ruston
2019-09-26 08:51:35 +01:00
parent e752ba7c6a
commit cb3bec65a1

View File

@@ -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;
};