word-games-theme 1.0.5 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/assets/css/home.css +5 -4
- data/assets/js/X-letter.js +15 -0
- data/assets/js/words-starting-with.js +15 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9b81f3cc5c2aca6169c50e25d0124764a71d80417ab6be82d85ece6686269014
|
|
4
|
+
data.tar.gz: 1e6c4046c5f81f223c87fef765ca3d0267b7ed271be8fcc0469e757ecb652f8a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0aaccc6318fd2bf77a076620fbc879ba43f5c730767c0dbd97fd0815d4d8e1f8b2091b95211af0105d1dddc79e022ecaa007ba68fa6688e70bb9fee483fb30ab
|
|
7
|
+
data.tar.gz: 837897950e5e40f89699f310d5cd3e3f9782b66886030ad3950e637511d01938e5348e92aaeda84273e9d601dde1e76a64840e48e608c09e367775991ef6abf0
|
data/assets/css/home.css
CHANGED
|
@@ -313,7 +313,8 @@ input:-webkit-autofill:active {
|
|
|
313
313
|
|
|
314
314
|
@media (max-width: 500px) {
|
|
315
315
|
#select_dropDown{
|
|
316
|
-
top:
|
|
316
|
+
top: 150px !important;
|
|
317
|
+
right: -15px !important
|
|
317
318
|
}
|
|
318
319
|
|
|
319
320
|
}
|
|
@@ -361,9 +362,9 @@ input:-webkit-autofill:active {
|
|
|
361
362
|
#select_dropDown {
|
|
362
363
|
display: none;
|
|
363
364
|
background: white;
|
|
364
|
-
position:
|
|
365
|
-
top:
|
|
366
|
-
right:
|
|
365
|
+
position: absolute;
|
|
366
|
+
top: 149px;
|
|
367
|
+
right: 0px;
|
|
367
368
|
border-radius: 0;
|
|
368
369
|
padding: 7.5px;
|
|
369
370
|
z-index: 9999999999;
|
data/assets/js/X-letter.js
CHANGED
|
@@ -69,6 +69,21 @@ txtBox.addEventListener('input', (e) => {
|
|
|
69
69
|
})
|
|
70
70
|
|
|
71
71
|
var theSelect = document.getElementById('select_dropDown')
|
|
72
|
+
|
|
73
|
+
const sortup = document.querySelector(".sortup-icon")
|
|
74
|
+
let bool = false
|
|
75
|
+
sortup.addEventListener("click", () => {
|
|
76
|
+
if (bool) {
|
|
77
|
+
theSelect.size = 0
|
|
78
|
+
bool = false
|
|
79
|
+
theSelect.style.display = "none"
|
|
80
|
+
}
|
|
81
|
+
else {
|
|
82
|
+
bool = true
|
|
83
|
+
theSelect.size = 3
|
|
84
|
+
theSelect.style.display = "block"
|
|
85
|
+
}
|
|
86
|
+
})
|
|
72
87
|
document.querySelector('.select_dropDown2').value = dictonary
|
|
73
88
|
const getDiff = (text1, text2) => {
|
|
74
89
|
var diffRange = []
|
|
@@ -55,6 +55,21 @@ txtBox.addEventListener('input', (e) => {
|
|
|
55
55
|
})
|
|
56
56
|
|
|
57
57
|
var theSelect = document.getElementById('select_dropDown')
|
|
58
|
+
|
|
59
|
+
const sortup = document.querySelector(".sortup-icon")
|
|
60
|
+
let bool = false
|
|
61
|
+
sortup.addEventListener("click", () => {
|
|
62
|
+
if (bool) {
|
|
63
|
+
theSelect.size = 0
|
|
64
|
+
bool = false
|
|
65
|
+
theSelect.style.display = "none"
|
|
66
|
+
}
|
|
67
|
+
else {
|
|
68
|
+
bool = true
|
|
69
|
+
theSelect.size = 3
|
|
70
|
+
theSelect.style.display = "block"
|
|
71
|
+
}
|
|
72
|
+
})
|
|
58
73
|
document.querySelector('.select_dropDown2').value = dictonary
|
|
59
74
|
// getWords define...
|
|
60
75
|
const getData = async (serachValue) => {
|