Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 3165 | Rev 3167 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 3165 Rev 3166
Línea 472... Línea 472...
472
   $('#vacancy_uuid').change();
472
   $('#vacancy_uuid').change();
Línea 473... Línea 473...
473
 
473
 
474
   $('#candidate_uuid').on('change', function () {
474
   $('#candidate_uuid').on('change', function () {
475
        const uuid = $('#candidate_uuid').val();
475
        const uuid = $('#candidate_uuid').val();
-
 
476
        const data = $('#candidate_uuid option[value="' + uuid + '"]').data()
-
 
477
        
-
 
478
        $('#add-button').data('url', data.addUrl)
-
 
479
        $("#edit-button").data('url', data.editUrl)
-
 
480
        $("#delete-button").data('url', data.deleteUrl)
-
 
481
        $("#report-button").attr('href', data.reportUrl)
-
 
482
      
476
        const data = $('#candidate_uuid option[value="' + uuid + '"]').data()
483
 
Línea 477... Línea 484...
477
    });
484
    });
478
 
485