From f97c6b6c2507d2715fa9c67907b40947c5da0549 Mon Sep 17 00:00:00 2001 From: Jeremy Ruston Date: Sun, 15 Jul 2012 23:07:07 +0100 Subject: [PATCH] Fixed typo --- core/modules/utils/dom/modal.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/utils/dom/modal.js b/core/modules/utils/dom/modal.js index ccabd56d1..d23229156 100644 --- a/core/modules/utils/dom/modal.js +++ b/core/modules/utils/dom/modal.js @@ -28,7 +28,7 @@ Modal.prototype.display = function(title) { }); wrapper.addEventListener("tw-close",function(event) { document.body.removeChild(wrapper); - event.stopPropogation(); + event.stopPropagation(); return false; },false); document.body.appendChild(wrapper);