From dfbd55d14e73066b9302e127187c9616841ecdcd Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Sat, 5 Sep 2020 07:27:13 +1000 Subject: [PATCH 1/3] docs: Fix simple typo, proccess -> process There is a small typo in build/js/mprogress.js, src/js/main.js. Should read `process` rather than `proccess`. --- build/js/mprogress.js | 4 ++-- src/js/main.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build/js/mprogress.js b/build/js/mprogress.js index bf175e1..2a0eb50 100644 --- a/build/js/mprogress.js +++ b/build/js/mprogress.js @@ -489,7 +489,7 @@ var progress = this._getRenderedId(), MParent = document.querySelector(this.options.parent); - // stop this proccess if the progress was allready removed + // stop this process if the progress was allready removed if (!MParent) return; if (MParent != document.body) { @@ -734,4 +734,4 @@ return Mprogress; }); -}).call(this); \ No newline at end of file +}).call(this); diff --git a/src/js/main.js b/src/js/main.js index 30ee52b..87f6063 100644 --- a/src/js/main.js +++ b/src/js/main.js @@ -328,7 +328,7 @@ import Utils from './utils'; var progress = this._getRenderedId(), MParent = document.querySelector(this.options.parent); - // stop this proccess if the progress was allready removed + // stop this process if the progress was allready removed if (!MParent) return; if (MParent != document.body) { From 3ec8535aee373db09bcad6e8a601828c87f9cd1d Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Sat, 5 Sep 2020 07:39:07 +1000 Subject: [PATCH 2/3] Update mprogress.js --- build/js/mprogress.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/js/mprogress.js b/build/js/mprogress.js index 2a0eb50..21b8df3 100644 --- a/build/js/mprogress.js +++ b/build/js/mprogress.js @@ -489,7 +489,7 @@ var progress = this._getRenderedId(), MParent = document.querySelector(this.options.parent); - // stop this process if the progress was allready removed + // stop this process if the progress was already removed if (!MParent) return; if (MParent != document.body) { From cfa07c7a2ddd338850064e7d218c1e6d88555ac7 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Sat, 5 Sep 2020 07:39:27 +1000 Subject: [PATCH 3/3] Update main.js --- src/js/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/main.js b/src/js/main.js index 87f6063..b884143 100644 --- a/src/js/main.js +++ b/src/js/main.js @@ -328,7 +328,7 @@ import Utils from './utils'; var progress = this._getRenderedId(), MParent = document.querySelector(this.options.parent); - // stop this process if the progress was allready removed + // stop this process if the progress was already removed if (!MParent) return; if (MParent != document.body) {