diff options
Diffstat (limited to 'static/js')
-rw-r--r-- | static/js/shobon.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/static/js/shobon.js b/static/js/shobon.js index 31fab9a..c9bce95 100644 --- a/static/js/shobon.js +++ b/static/js/shobon.js @@ -74,7 +74,7 @@ function shobon() { replaceCountryName(reply) } // colorea los id's - if(localStorage.getItem("shobon_ids") != "false") { + if(localStorage.getItem("shobon_ids") == "true") { paintIds(reply); } // deja la barra superior fija @@ -241,7 +241,7 @@ function shobonSettings(e) { var p = document.createElement("div"); p.appendChild(createCheckbox("shobon_on", "<b>Activar extensión</b>", true)); p.appendChild(createCheckbox("shobon_navbar", "Fijar barra superior", false)); - p.appendChild(createCheckbox("shobon_ids", "Colorear IDs", true)); + p.appendChild(createCheckbox("shobon_ids", "Colorear IDs", false)); p.appendChild(createCheckbox("shobon_embedimg", "Incluir imágenes miniatura", false)); p.appendChild(createCheckbox("shobon_newposts", "Destacar mensajes nuevos", false)); p.appendChild(createCheckbox("shobon_country", "Reemplazar códigos de país por nombres", false)); |