20 lines
494 B
JavaScript
20 lines
494 B
JavaScript
"use strict";
|
|
|
|
/** @type {Dictionary.<string, any|null>} */
|
|
const settings = {
|
|
cells : 40,
|
|
position : "body",
|
|
class_name : "judge-pole",
|
|
frames_per_second : 12,
|
|
language : "espanol",
|
|
|
|
db_storage_key : "judge_pole_db_data",
|
|
default_criteria : [
|
|
"Vibe & Originalidad",
|
|
"Calidad Técnica / No Explota",
|
|
"Factor Troll / Meme",
|
|
"Diseño / Estética"
|
|
],
|
|
|
|
...(typeof custom_settings == "undefined" ? {} : custom_settings)
|
|
}; |