Skip to content

Commit 9565c5d

Browse files
authored
Merge pull request #3 from austinmcnicholas/master
Update Notification.js null check
2 parents 56d5032 + ed258b4 commit 9565c5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Notification/widget/Notification.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ define([
208208
},
209209

210210
_onClose: function (obj) {
211-
if (this.mfOnClose !== "") {
211+
if (this.mfOnClose !== "" && this._contextObj != null) {
212212
mx.data.action({
213213
params: {
214214
applyto: 'selection',

0 commit comments

Comments
 (0)