Explorar el Código

Fix bug in Javascript.

pull/24/head
Ben Kurtovic hace 9 años
padre
commit
248c7e876a
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      static/script.js

+ 2
- 2
static/script.js Ver fichero

@@ -88,9 +88,9 @@ $(document).ready(function() {
$("#cv-form").submit(function() {
if ($("#action-search").is(":checked")) {
if ($("#cv-cb-engine").is(":checked"))
$(".cv-search[type='hidden'][name='use_engine'").prop("disabled", true);
$(".cv-search[type='hidden'][name='use_engine']").prop("disabled", true);
if ($("#cv-cb-links").is(":checked"))
$(".cv-search[type='hidden'][name='use_links'").prop("disabled", true);
$(".cv-search[type='hidden'][name='use_links']").prop("disabled", true);
}
});



Cargando…
Cancelar
Guardar