Skip to content
This repository has been archived by the owner on Nov 3, 2021. It is now read-only.

Commit

Permalink
<fixup> Guard against null overlay element
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinGrandon committed Dec 2, 2015
1 parent 04b9216 commit b57039c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/communications/dialer/js/dialer.js
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ var CallHandler = (function callHandler() {
};

var oncall = function() {
SuggestionBar.overlay.hide();
SuggestionBar.overlay && SuggestionBar.overlay.hide();
SuggestionBar.clear();
};

Expand Down

0 comments on commit b57039c

Please sign in to comment.