MDL-28235 form: Removed close icon of help icon popups

This commit is contained in:
Frederic Massart
2012-10-02 14:34:15 +08:00
parent b218e3ca84
commit bd102921e7

View File

@@ -1424,11 +1424,9 @@ M.util.help_icon = {
init : function() {
var strclose = Y.Escape.html(M.str.form.close);
var closebtn = Y.Node.create('<a id="closehelpbox" href="#"><img src="'+M.util.image_url('t/delete', 'moodle')+'" alt="'+strclose+'" /></a>');
var footerbtn = Y.Node.create('<button class="closebtn">'+strclose+'</button>');
// Create an overlay from markup
this.overlay = new Y.Overlay({
headerContent: closebtn,
footerContent: footerbtn,
bodyContent: '',
id: 'helppopupbox',
@@ -1438,7 +1436,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");
@@ -1455,9 +1452,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) {