Don't crash for edit enginges that don't support cancelPopups

fix-syncer
Jeremy Ruston 2019-09-26 08:51:35 +01:00
rodzic e752ba7c6a
commit cb3bec65a1
1 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

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