word-games-theme 2.3.9 → 2.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_data/wordgames/en/jumble_word_finder.json +9 -1
- data/_data/wordgames/en/root.json +8 -1
- data/_includes/authors/authors.html +1 -1
- data/_includes/featurePageAuthors/featurePageAuthors.html +93 -102
- data/_includes/head/index.html +5 -0
- data/_includes/wordgames/featurehighlights/featurehighlights.html +2 -2
- data/_includes/wordgames/head/head.html +10 -0
- data/_includes/wordgames/search-box/search-box.html +59 -1
- data/_includes/wordgames/words-data/words-data.html +1 -1
- data/_layouts/wordgames-home.html +34 -2
- data/assets/css/style.css +1 -0
- data/assets/css/wordgames-home.css +16 -9
- data/assets/css/wordgames-result.css +2 -2
- data/assets/css/wordgames-theme.css +95 -0
- data/assets/css/wordgames-variables.css +2 -1
- data/assets/js/wordfinder-home.js +198 -0
- data/assets/js/wordfinder.js +952 -0
- data/assets/js/wordgames-home.js +1 -3
- data/assets/js/wordgames-result.js +2 -1
- metadata +4 -2
data/assets/js/wordgames-home.js
CHANGED
@@ -321,6 +321,7 @@ if (lengthValue === "1") {
|
|
321
321
|
// getWords function define...
|
322
322
|
function getWords(data) {
|
323
323
|
main.innerHTML = "";
|
324
|
+
document.querySelector(".sortingFilters").style.display="flex"
|
324
325
|
// tab_container.innerHTML = "";
|
325
326
|
lengthSelect.innerHTML = ""
|
326
327
|
if (typeof data === "string") {
|
@@ -928,4 +929,4 @@ function findIndex(str, char) {
|
|
928
929
|
}
|
929
930
|
|
930
931
|
return indexes;
|
931
|
-
}
|
932
|
+
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: word-games-theme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- manpreet-appscms
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-01-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -381,6 +381,8 @@ files:
|
|
381
381
|
- assets/js/theme.js
|
382
382
|
- assets/js/wordScrabble-test.js
|
383
383
|
- assets/js/wordScrabble.js
|
384
|
+
- assets/js/wordfinder-home.js
|
385
|
+
- assets/js/wordfinder.js
|
384
386
|
- assets/js/wordgames-home.js
|
385
387
|
- assets/js/wordgames-result.js
|
386
388
|
- assets/js/wordgames-xletter.js
|