aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/ui/popup/confirm.reel/confirm.js
diff options
context:
space:
mode:
authorJon Reid2012-03-09 16:47:26 -0800
committerJon Reid2012-03-09 16:47:26 -0800
commitbe59c44f9232104ded1a9c4cd888d70021eba33e (patch)
treeb94c8432759362e035f15c0936c575a2861b6ad8 /node_modules/montage/ui/popup/confirm.reel/confirm.js
parent54b31ecbd4c9877183850542227c61946a62aa4f (diff)
parenta28cb88194f45325e42dd8c774469424712dd6f4 (diff)
downloadninja-be59c44f9232104ded1a9c4cd888d70021eba33e.tar.gz
Merge remote-tracking branch 'ninja-jduran/TimelineUber' into Timeline-local
Diffstat (limited to 'node_modules/montage/ui/popup/confirm.reel/confirm.js')
-rwxr-xr-xnode_modules/montage/ui/popup/confirm.reel/confirm.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/node_modules/montage/ui/popup/confirm.reel/confirm.js b/node_modules/montage/ui/popup/confirm.reel/confirm.js
index 7e186e29..0fc5fea0 100755
--- a/node_modules/montage/ui/popup/confirm.reel/confirm.js
+++ b/node_modules/montage/ui/popup/confirm.reel/confirm.js
@@ -115,7 +115,7 @@ var Confirm = exports.Confirm = Montage.create(Component, /** @lends module:"mon
115 this.okCallback.call(this, evt); 115 this.okCallback.call(this, evt);
116 } 116 }
117 var anEvent = document.createEvent("CustomEvent"); 117 var anEvent = document.createEvent("CustomEvent");
118 anEvent.initCustomEvent("montage_confirm_ok", true, true); 118 anEvent.initCustomEvent("montage_confirm_ok", true, true, null);
119 this.dispatchEvent(anEvent); 119 this.dispatchEvent(anEvent);
120 120
121 this.popup.hide(); 121 this.popup.hide();
@@ -132,7 +132,7 @@ var Confirm = exports.Confirm = Montage.create(Component, /** @lends module:"mon
132 this.cancelCallback.call(this, evt); 132 this.cancelCallback.call(this, evt);
133 } 133 }
134 var anEvent = document.createEvent("CustomEvent"); 134 var anEvent = document.createEvent("CustomEvent");
135 anEvent.initCustomEvent("montage_confirm_cancel", true, true); 135 anEvent.initCustomEvent("montage_confirm_cancel", true, true, null);
136 this.dispatchEvent(anEvent); 136 this.dispatchEvent(anEvent);
137 137
138 this.popup.hide(); 138 this.popup.hide();