Bug 305794: Report A Broken Web Site, Privacy Policy link not working, r=mconnor, a=asa

git-svn-id: svn://10.0.0.236/branches/MOZILLA_1_8_BRANCH@179093 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
gavin%gavinsharp.com
2005-08-26 20:20:22 +00:00
parent 2434c92fb2
commit 5265c7c9f7

View File

@@ -84,11 +84,6 @@ function getCharPref(prefname, aDefault) {
}
}
function openPrivacyPolicy() {
var url = getCharPref("privacyURL", "http://reporter.mozilla.org/privacy/");
openDialog(window.opener.getBrowserURL(), "_blank", "chrome,all,dialog=no", url, null, null);
}
function initPrivacyNotice() {
var reportWizard = document.getElementById('reportWizard');
// If they agreed, we continue on
@@ -128,6 +123,11 @@ function initForm() {
// Change next button to "submit report"
reportWizard.getButton('next').label = strbundle.getString("submitReport") + ">";
// Set the privacy policy link href
var url = getCharPref("privacyURL", "http://reporter.mozilla.org/privacy/");
var privacyLink = document.getElementById("privacyPolicy");
privacyLink.setAttribute("href", url);
// We don't let the user go forward until they fufill certain requirements - see validateform()
reportWizard.canAdvance = false;