diff --git a/popup/popup.html b/popup/popup.html
index 838e21c..fbb8dae 100644
--- a/popup/popup.html
+++ b/popup/popup.html
@@ -10,7 +10,7 @@
-
+
«
»
diff --git a/popup/popup.js b/popup/popup.js
index 0d76367..df0478e 100644
--- a/popup/popup.js
+++ b/popup/popup.js
@@ -33,6 +33,9 @@ async function dictionary(query) {
"example"
).innerHTML = `Example: ${json[0].meanings[0].definitions[0].example}`;
}
+ document
+ .getElementById("navigatecontainer")
+ .classList.remove("hidenavigator");
} else if (json.title) {
document.getElementById("error").innerHTML = "⚠ " + json.title;
}
diff --git a/popup/style.css b/popup/style.css
index 61b39c1..e0f2001 100644
--- a/popup/style.css
+++ b/popup/style.css
@@ -39,6 +39,10 @@ div {
padding: 6px 14px;
}
+.hidenavigator {
+ display: none;
+}
+
.navigator:hover {
cursor: pointer;
background-color: #ddd;