updated tarot frame for mobile and desktop usability
This commit is contained in:
+7
-2
@@ -378,9 +378,14 @@
|
||||
}));
|
||||
}
|
||||
|
||||
async function loadGematriaWordsByValue(value) {
|
||||
async function loadGematriaWordsByValue(value, options = {}) {
|
||||
const ciphers = Array.isArray(options?.ciphers)
|
||||
? options.ciphers.map((cipherId) => String(cipherId || "").trim()).filter(Boolean).join(",")
|
||||
: String(options?.ciphers || "").trim();
|
||||
|
||||
return fetchJson(buildApiUrl("/api/v1/gematria/words", {
|
||||
value
|
||||
value,
|
||||
ciphers
|
||||
}));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user