From c5c44b88022463f3718510b3c68d21b892143d03 Mon Sep 17 00:00:00 2001 From: calixteman Date: Wed, 28 Feb 2024 20:44:16 +0100 Subject: [PATCH] feat!: Make pauseObserving and resumeObserving public (#623) This is consistent with mozilla-central. --- fluent-dom/src/dom_localization.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/fluent-dom/src/dom_localization.js b/fluent-dom/src/dom_localization.js index b6d817c3..21d1bfbd 100644 --- a/fluent-dom/src/dom_localization.js +++ b/fluent-dom/src/dom_localization.js @@ -191,8 +191,6 @@ export default class DOMLocalization extends Localization { /** * Pauses the `MutationObserver`. - * - * @private */ pauseObserving() { if (!this.mutationObserver) { @@ -205,8 +203,6 @@ export default class DOMLocalization extends Localization { /** * Resumes the `MutationObserver`. - * - * @private */ resumeObserving() { if (!this.mutationObserver) {