diff --git a/lib/javascript-static.js b/lib/javascript-static.js index 158e5ff52a9..2b6cefdefff 100644 --- a/lib/javascript-static.js +++ b/lib/javascript-static.js @@ -1395,11 +1395,9 @@ M.util.help_icon = { init : function() { var strclose = Y.Escape.html(M.str.form.close); - var closebtn = Y.Node.create(''+strclose+''); var footerbtn = Y.Node.create(''); // Create an overlay from markup this.overlay = new Y.Overlay({ - headerContent: closebtn, footerContent: footerbtn, bodyContent: '', id: 'helppopupbox', @@ -1409,7 +1407,6 @@ M.util.help_icon = { }); this.overlay.render(Y.one(document.body)); - closebtn.on('click', this.overlay.hide, this.overlay); footerbtn.on('click', this.overlay.hide, this.overlay); var boundingBox = this.overlay.get("boundingBox"); @@ -1426,9 +1423,6 @@ M.util.help_icon = { this.overlay.hide(); } }, this); - - Y.on("key", this.close, closebtn , "down:13", this); - closebtn.on('click', this.close, this); }, close : function(e) {