Bug 296271 - Next should not submit the report imediately (change to 'submit'). r=mconnor

This commit is contained in:
robert%accettura.com 2005-06-13 15:53:18 +00:00
Родитель 66a6a4fc3a
Коммит e13f6678f6
2 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -1,3 +1,5 @@
submitReport=Submit Report
sendingReport=Sending Report...
reportSent=Report Sent

Просмотреть файл

@ -120,11 +120,15 @@ function setPrivacyPref(){
}
function initForm() {
var strbundle=document.getElementById("strings");
var reportWizard = document.getElementById('reportWizard');
reportWizard.canRewind = false;
reportWizard.canRewind = false;
document.getElementById('url').value = gURL;
// Change next button to "submit report"
reportWizard.getButton('next').label = strbundle.getString("submitReport") + ">";
// We don't let the user go forward until they fufill certain requirements - see validateform()
reportWizard.canAdvance = false;
}