summaryrefslogtreecommitdiffstats
path: root/pages/popup
diff options
context:
space:
mode:
Diffstat (limited to 'pages/popup')
-rw-r--r--pages/popup/popup.html2
-rw-r--r--pages/popup/popup.js4
2 files changed, 3 insertions, 3 deletions
diff --git a/pages/popup/popup.html b/pages/popup/popup.html
index 22ccb02..b5285de 100644
--- a/pages/popup/popup.html
+++ b/pages/popup/popup.html
@@ -14,7 +14,7 @@
<img src="../../images/logo.png" alt="Privacy Redirect logo">
</div>
<small>
- <span>Version</span>: 1.1.2</span>
+ <span>Version</span>: 1.1.3</span>
</small>
</header>
diff --git a/pages/popup/popup.js b/pages/popup/popup.js
index 799b5ea..cc1aa56 100644
--- a/pages/popup/popup.js
+++ b/pages/popup/popup.js
@@ -17,9 +17,9 @@ chrome.storage.sync.get(
function debounce(func, wait, immediate) {
let timeout;
- return function () {
+ return () => {
let context = this, args = arguments;
- let later = function () {
+ let later = () => {
timeout = null;
if (!immediate) func.apply(context, args);
};