word-games-theme 2.7.2 → 2.7.3
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/js/wordfinder.js +8 -1
- data/assets/js/xletter-result.js +8 -1
- 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: 1d819cc87656516e89cbe0b6d7daa1b9c95a537ecbf4f21a5513b5bb3803d794
|
|
4
|
+
data.tar.gz: d4750c90620761f4a68407cf7238cbf2bf57cfa157fcfd54daee503b04128506
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d9de4bac595d36df8fe0316cadbf7fd9806f0ed649279aefa96930dd0900b0cc12e29096a78b0659cfd783a1f08dd543354ad16d789f24ed7ab7f24dea42be71
|
|
7
|
+
data.tar.gz: 1d1171c5414d541f4ef218322ff7fc7694a6d7ddc28bdb547fe5d6a622f1251bb064b7cdc5f1b17f394a9745423c0b31ebdf23cafdf114662fa0f0f810130921
|
data/assets/js/wordfinder.js
CHANGED
|
@@ -420,7 +420,14 @@ function getWords(data) {
|
|
|
420
420
|
<h3 class="wordListHeading lead">${i} Letter Words</h3>
|
|
421
421
|
<div class="wordList">${result.join("")}</div>
|
|
422
422
|
<div class="w-100 text-center btn-container">
|
|
423
|
-
<button
|
|
423
|
+
<button
|
|
424
|
+
style="background: black;
|
|
425
|
+
padding: 1rem 2rem;
|
|
426
|
+
border-radius: 50px;
|
|
427
|
+
color: #fff;
|
|
428
|
+
font-size: 15px;
|
|
429
|
+
border: none;"
|
|
430
|
+
onclick="showMoreWords(this)" type="button" class="my-4 showmore_btn" id="${i}">More Words</button>
|
|
424
431
|
</div>
|
|
425
432
|
</div>`
|
|
426
433
|
|
data/assets/js/xletter-result.js
CHANGED
|
@@ -449,7 +449,14 @@ function x_with_letters(data) {
|
|
|
449
449
|
${result.join("")}
|
|
450
450
|
</div>
|
|
451
451
|
<div class="w-100 text-center btn-container">
|
|
452
|
-
<button
|
|
452
|
+
<button
|
|
453
|
+
style="background: black;
|
|
454
|
+
padding: 1rem 2rem;
|
|
455
|
+
border-radius: 50px;
|
|
456
|
+
color: #fff;
|
|
457
|
+
font-size: 15px;
|
|
458
|
+
border: none;"
|
|
459
|
+
onclick="showMoreWords(this)" type="button" class="my-4 showmore_btn" id="${itemLength}">More Words</button>
|
|
453
460
|
</div>
|
|
454
461
|
</div>
|
|
455
462
|
`;
|