Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 1399 Rev 1400
Línea 397... Línea 397...
397
        theme: 'bootstrap4',
397
        theme: 'bootstrap4',
398
        width: '100%',
398
        width: '100%',
399
    });
399
    });
Línea 400... Línea 400...
400
    
400
    
401
    /**
-
 
402
     * On change selecte JobDescription
-
 
403
     */
-
 
404
    $('#job_description_id').on('change', function() {
-
 
405
        if ($("#job_description_id").val() != '') {
-
 
406
            $.getJSON("/settings/jobs-description/edit/" + $("#job_description_id").val(), function(response) {
-
 
407
                if (response['success']) {
-
 
408
                   
-
 
409
                }
-
 
410
            });
-
 
411
        }
-
 
412
    });
-
 
413
 
-
 
414
     /**
401
    /**
415
     * Initialize select Jobcategory
402
     * Initialize select Jobcategory
416
     */
403
     */
417
    $('#job_category_id').select2({
404
    $('#job_category_id').select2({
418
        theme: 'bootstrap4',
405
        theme: 'bootstrap4',
Línea 424... Línea 411...
424
     */
411
     */
425
    $('#industry_id').select2({
412
    $('#industry_id').select2({
426
        theme: 'bootstrap4',
413
        theme: 'bootstrap4',
427
        width: '100%',
414
        width: '100%',
428
    });
415
    });
429
      /**
-
 
430
     * On change selecte industry
-
 
431
     */
-
 
432
    $('#industry_id').on('change', function() {
-
 
433
        if ($("#industry_id").val() != '') {
-
 
434
            $.getJSON("/settings/industries/edit/" + $("#industry_id").val(), function(response) {
-
 
435
                if (response['success']) {
-
 
436
                    
416
   
437
                }
-
 
438
            });
-
 
439
        }
-
 
440
    });
-
 
441
     /**
417
     /**
442
     * Initialize select Location
418
     * Initialize select Location
443
     */
419
     */
Línea 444... Línea 420...
444
 
420