Commit 6afa50d1 authored by Philipp von Weitershausen's avatar Philipp von Weitershausen
Browse files

Bug 600561 - Sync UI: Continue button disabled on Sync Key wizard page after...

Bug 600561 - Sync UI: Continue button disabled on Sync Key wizard page after manual backup. r=mconnor a=blocking-beta8
parent 1b2169c2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -384,8 +384,8 @@ var gSyncSetup = {
        this.wizard.getButton("extra1").hidden = true;
        break;
      case NEW_ACCOUNT_PP_PAGE:
        document.getElementById("saveSyncKeyButton").focus();
        let el = document.getElementById("weavePassphrase");
        el.blur();
        if (!el.value)
          this.onPassphraseGenerate();
        this.checkFields();
+6 −3
Original line number Diff line number Diff line
@@ -217,7 +217,8 @@
      <textbox id="weavePassphrase"
               onkeyup="gSyncSetup.onPassphraseChange()"
               onchange="gSyncSetup.onPassphraseChange()"
               onfocus="this.select()"/>
               onfocus="this.select();
                        gSyncSetup.afterBackup();"/>

      <vbox id="passphraseFeedback" pack="center">
        <hbox id="passphraseFeedbackRow" hidden="true" align="center">
@@ -252,11 +253,13 @@
    <groupbox align="center">
      <description>&syncKeyBackup.description;</description>
      <hbox>
        <button label="&button.syncKeyBackup.print.label;"
        <button id="printSyncKeyButton"
                label="&button.syncKeyBackup.print.label;"
                accesskey="&button.syncKeyBackup.print.accesskey;"
                oncommand="gSyncUtils.passphrasePrint('weavePassphrase');
                           gSyncSetup.afterBackup();"/>
        <button label="&button.syncKeyBackup.save.label;"
        <button id="saveSyncKeyButton"
                label="&button.syncKeyBackup.save.label;"
                accesskey="&button.syncKeyBackup.save.accesskey;"
                oncommand="gSyncUtils.passphraseSave('weavePassphrase');
                           gSyncSetup.afterBackup();"/>