Skip to content

Commit

Permalink
Shorten filename
Browse files Browse the repository at this point in the history
  • Loading branch information
piroor committed Oct 18, 2024
1 parent 53f8817 commit 29c50fe
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/web/confirm.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { L10n } from "./l10n.mjs";
import { SafeBccConfirmation } from "./safe-bcc-confirmation.mjs";
import { AddedDomainsReconfirmation } from "./added-domains-reconfirmation.mjs";
import { AttachmentsConfirmation } from "./attachments-confirmation.mjs";
import * as DialogUtils from "./dialog-utils.mjs";
import * as Dialog from "./dialog.mjs";

let l10n;
let safeBccConfirmation;
Expand Down Expand Up @@ -175,7 +175,7 @@ async function onMessageFromParent(arg) {
)
);

DialogUtils.resizeToContent();
Dialog.resizeToContent();

addedDomainsReconfirmation.init(data);
addedDomainsReconfirmation.initUI(sendStatusToParent);
Expand Down
4 changes: 2 additions & 2 deletions src/web/count-down.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { L10n } from "./l10n.mjs";
import * as DialogUtils from "./dialog-utils.mjs";
import * as Dialog from "./dialog.mjs";

let l10n;

Expand Down Expand Up @@ -45,7 +45,7 @@ async function onMessageFromParent(arg) {
$("#count").text(data.config.common.CountSeconds);
$("#message").show();

DialogUtils.resizeToContent();
Dialog.resizeToContent();

const start = Date.now();
const timer = window.setInterval(() => {
Expand Down
File renamed without changes.

0 comments on commit 29c50fe

Please sign in to comment.