While developing a firefox extension, I create a wizard window from overlay.js using:
this.wizard = window.openDialog("chrome://firenow/content/wizard.xul", "","chrome, dialog, modal, resizable=no", params);
this.wizard.focus();
How can I close the wizard from overlay.js? I should call its cancel()
function but I can't get it working!