main.js 22.1 KB
Newer Older
1 2 3
var cont_experiencia = 0;
let cont_estudios = 0;
let cont_tecnologia = 0;
4

willgonzz committed
5
let cont_cargo = 0;
6 7 8
const experiencias = [];
const estudios = [];
const tecnologias = [];
9
let noValidateFlag = false;
10

willgonzz committed
11
const postulaciones = [];
12

13
var cont_referencias=0 ;
14 15
const referencias= [];

16

17

18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
const formValidator = function () {
    'use strict'

    // Fetch all the forms we want to apply custom Bootstrap validation styles to
    var forms = document.querySelectorAll('.needs-validation')
    var expForm = document.querySelector('#agregar-exp')


    // Loop over them and prevent submission
    Array.prototype.slice.call(forms)
        .forEach(function (form) {
            form.addEventListener('submit', function (event) {
                if (!form.checkValidity()) {
                    event.preventDefault()
                    event.stopPropagation()
33
                    noValidateFlag = true;
34 35 36 37 38 39
                }

                form.classList.add('was-validated')
            }, false)
        })
}
40 41 42 43 44 45 46 47
function carg(elemento) {
    var element = document.getElementById('descripcion');
    if(elemento == "otro"){
    element.style.display='block';
    }else{
    element.style.display='none';
    }
}
48
function agregarFieldExpierncia(event){
49 50 51
    //recoger del form
    const pairs = {};
    const formexp = document.querySelector("[name=experiencia-form]");
52
    formexp.classList.add('was-validated')
53
    const formData = new FormData(formexp);
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
    let error=validarfecha(formData.get("fechaDesde"), formData.get("fechaHasta"))
    let appendTo = "Hasta";
   if (error) {

        if(error.includes("desde")) appendTo = "Desde";
        formexp.querySelector(".errorfecha"+appendTo)
        
        formexp['fecha'+appendTo].setCustomValidity(error)
        document.querySelector(".errorfecha"+appendTo).innerHTML = error;
        console.log(error);
        
   }
   else{
    formexp.fechaDesde.setCustomValidity('')
    formexp.fechaHasta.setCustomValidity('')
   }
    
71 72
    const reconocimientos = [{},{},{}];
    let pos_rec;
73 74
    let returnFlag = false;

75 76
    let requiredValues = ["institucion", "cargo", "fechaDesde"]

77
    formData.forEach((value, key)=>{
78
        if(requiredValues.includes(key)
79 80 81 82 83 84 85
        && value==="" && returnFlag == false){
            console.log(key, value)
            returnFlag = true;
        }
    });

    if(returnFlag===true){
86 87 88 89 90 91
        let message = "Rellene "
        for(let i=0;i<requiredValues.length;i++){
            message+=", "+requiredValues[i];
        }
        message += " como minimo."
        alert(message);
92 93 94
        return;
    }

95
    for (const [name, value] of formData){
96 97 98 99 100 101 102
        pos_rec = name.split("-");//rec-nombre-index
        if (pos_rec.length > 1) {
            reconocimientos[pos_rec[2]][pos_rec[1]] = value
        }
        else{
            pairs[name] = value
        }
103

104
    }
105
    pairs["reconocimientos"] = reconocimientos.filter(rec => rec.nombre);
106 107
    experiencias[cont_experiencia] = pairs;
    formexp.reset();
108
    formexp.classList.remove('was-validated')
109 110 111
    //imprimir lista actualizada
    const div = document.querySelector("#experiencias")
    const div1 = document.createElement('div');
112 113
    
    let content='';
114 115 116 117
    for (let index = 0; index < experiencias.length; index++) {
        const exp = experiencias[index];
        if(exp==null) continue;
        content += `
118 119 120 121 122 123 124 125 126 127 128 129
        <div class="col border border-3" id="exp-${index}">
                    <h4><center>Experiencia</center></h4>      
                    <label><b>Institucion:</b> ${exp.institucion}</label><br>  
                    <label><b>Fecha Inicio:</b> ${exp.fechaDesde}</label><br>
                    <label><b>Fecha Fin:</b> ${exp.fechaHasta}</label><br>
                    <label><b>Referencia:</b> ${exp.nombreReferencia}</label><br>
                    <label><b>Telefono de la referencia:</b> ${exp.telefonoReferencia}</label><br>
                    <label><b>Cargo:</b> ${exp.cargo}</label><br>
                    <label><b>Motivo de salida:</b> ${exp.motivoSalida}</label><br>
            
            <button type="button" class="btn btn-primary" onclick="eliminarExperiencia(event)"> <span class="glyphicon glyphicon-trash"></span>Eliminar</button>
        </div>
130 131 132
        
        `
    }
133 134 135 136
    //content += "</ul>" 
    div.innerHTML = content
    //div.innerHTML = '';
    //div.appendChild(div1);
137 138
    cont_experiencia++;
}
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
function validarfecha(fechaDesde, fechaHasta){
    let fechadehoy= new Date().toISOString().slice(0,10);

    if(fechaDesde>fechadehoy ){
       return "la fecha desde no puede ser mayor a la fecha actual" ;   
    }
    if(fechaHasta =! null && fechaHasta>fechadehoy){
        return "la fecha hasta no puede ser mayor a la fecha actual" ;  
    } 
    if(fechaHasta =! null && fechaDesde>fechaHasta){
        return "la fecha desde no puede ser mayor a la fecha hasta";
    
    }
        return false
  
}
willgonzz committed
155 156 157 158 159 160
/*--------------------------------------------------------------------*/
function agregarFieldTecnologia(){
    //recoger del form
    const pairs = {};
    const formtecn = document.querySelector("[name=tecnologia-form]");
    const formData = new FormData(formtecn);
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184

    //Validacion
    let returnFlag = false;

    let requiredValues = ["nombre", "nivel"]

    formData.forEach((value, key)=>{
        if(requiredValues.includes(key)
            && value==="" && returnFlag == false){
            console.log(key, value)
            returnFlag = true;
        }
    });

    if(returnFlag===true){
        let message = "Rellene "
        for(let i=0;i<requiredValues.length;i++){
            message+=", "+requiredValues[i];
        }
        message += " como minimo."
        alert(message);
        return;
    }

willgonzz committed
185 186 187 188
    for (const [name, value] of formData){
        pairs[name] = value
    }
    tecnologias[cont_tecnologia]={}
189
    tecnologias[cont_tecnologia]["tecnologia"]=pairs["tecnologia-id"]=="-1"?{nombre: pairs["tecnologia-nombre"]}:{id: pairs["tecnologia-id"],nombre:document.querySelector('[name=tecnologia-id] > option[value="'+pairs["tecnologia-id"]+'"]').innerHTML}
willgonzz committed
190 191 192
    tecnologias[cont_tecnologia]["nivel"]=pairs.nivel
    //tecnologias[cont_tecnologia] = pairs;
    formtecn.reset();
193
    document.querySelector("#tecnologia-nombre").classList.add('d-none')
willgonzz committed
194 195 196 197
    //imprimir lista actualizada
    const div = document.querySelector("#tecnologias")
    const div1 = document.createElement('div');
    console.log(tecnologias[0])
198

199
    let content1=''
willgonzz committed
200 201 202 203
    for (let index = 0; index < tecnologias.length; index++) {
        const tecn = tecnologias[index];
        if(tecn==null) continue;
        content1 += `
204 205 206
        <div class="col border border-3" id="tecn-${index}">        
            <label>${tecn.tecnologia.nombre}</label><br>
            <label><progress value="${tecn.nivel}" max="5"></progress></label> <br>        
207
            <button type="button" class="btn btn-primary" onclick="eliminarTecnologia(event)">Eliminar</button>
208
            <br>
209
        </div>
willgonzz committed
210 211 212
        
        `
    }
213 214 215 216
    //content1 += "</ul>" 
    div.innerHTML = content1
    //div.innerHTML = '';
    //div.appendChild(div1);
willgonzz committed
217
    cont_tecnologia++;
218
    document.querySelector("#no-valid-tecno").style.display = "none";
219
}
220

willgonzz committed
221 222

/*--------------------------------------------------------------------*/
223
function eliminarExperiencia(event) {
224 225 226
    //eliminar del array
    experiencias[event.target.parentElement.id.split("-")[1]]=null
    //eliminar en html
227 228
    event.target.parentElement.remove()
}
willgonzz committed
229 230 231 232 233 234 235 236
/*----------------------------------------------------------------- */
function eliminarTecnologia(event) {
    //eliminar del array
    tecnologias[event.target.parentElement.id.split("-")[1]]=null
    //eliminar en html
    event.target.parentElement.remove()
}
/*----------------------------------------------------------------- */
237 238 239 240
function serializeJSON (form) {
    // Create a new FormData object
    const formData = new FormData(form);

241 242 243 244 245 246 247 248 249
    if(formData.get('fechaNacimiento')>=new Date().toISOString().slice(0,10)){
        form['fechaNacimiento'].setCustomValidity('Fecha de nacimiento debe ser menor que actual')
        noValidateFlag = true;
        return;
    }
    else{
        form['fechaNacimiento'].setCustomValidity('')   
    }

250

251 252 253 254 255
    // Create an object to hold the name/value pairs
    const pairs = {};

    // Add each name/value pair to the object
    for (const [name, value] of formData) {
256
        pairs[name] = value
257
    }
258 259 260
    pairs["experiencias"] = experiencias.filter(exp => exp)//eliminacion de nulos
    pairs["estudios"] = estudios.filter(est => est)//eliminacion de nulos
    pairs["tecnologias"] = tecnologias.filter(tec => tec)//eliminacion de nulos
willgonzz committed
261
    pairs["postulaciones"] = postulaciones.filter(car => car)//eliminacion de nulos
262
    pairs["referencias"] = referencias.filter(tec => tec)
263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279
    if(pairs["postulaciones"].length<1){
        document.querySelector("#no-valid-cargo").style.display = "block";
        noValidateFlag = true;
    }else{
        document.querySelector("#no-valid-cargo").style.display = "none";
    }
    console.log(pairs["tecnologias"])
    if(pairs["tecnologias"].length<1){
        document.querySelector("#no-valid-tecno").style.display = "block";
        noValidateFlag = true;
    }else{
        document.querySelector("#no-valid-tecno").style.display = "none";
    }
    if(noValidateFlag){
        return;
    }
    noValidateFlag = false
280 281 282 283 284
    
    // Return the JSON string
    return JSON.stringify(pairs, null, 2);
}

285 286 287 288 289 290
function obtenerCV(){
    let input = document.querySelector('#cvFile')
    return input.files[0];
  
}

291
async function postData(url = '', data = {}) {
292 293
    var token = document.querySelector("meta[name='_csrf']").content;
    var headerxs = document.querySelector("meta[name='_csrf_header']").content;
294
    // Default options are marked with *
295
    let senddata = {
296 297 298 299 300
        method: 'POST', // *GET, POST, PUT, DELETE, etc.
        mode: 'cors', // no-cors, *cors, same-origin
        cache: 'no-cache', // *default, no-cache, reload, force-cache, only-if-cached
        credentials: 'same-origin', // include, *same-origin, omit
        headers: {
301
            //'Content-Type': undefined//'application/json',
302
            // 'Content-Type': 'application/x-www-form-urlencoded',
303 304 305 306
        },
        redirect: 'follow', // manual, *follow, error
        referrerPolicy: 'no-referrer', // no-referrer, *no-referrer-when-downgrade, origin, origin-when-cross-origin, same-origin, strict-origin, strict-origin-when-cross-origin, unsafe-url
        body: data // body data type must match "Content-Type" header
307 308
    }
    senddata["headers"][headerxs] = token;
309 310 311 312
    let response = null
    if(!noValidateFlag){
        response = await fetch(url, senddata);
    }
313 314
    return response; // parses JSON response into native JavaScript objects
}
315 316 317 318 319 320 321 322 323 324

function formatearJsonWithFile(json, file){
    formData = new FormData();

    formData.append("file", file);
    formData.append('postulante', new Blob([json], {
                type: "application/json"
            }));
    return formData
}
325
formValidator()
326 327
form = document.querySelector("form");
form.addEventListener("submit",(evt)=>{
328 329 330 331 332
    // if (!form.checkValidity()) {
    //     evt.preventDefault()
    //     evt.stopPropagation()
    // }
    // form.classList.add('was-validated')
333 334 335
    evt.preventDefault();
    let formSerialized = serializeJSON(form);
    let fileCV = obtenerCV();
336
    if(!noValidateFlag){
337
        postData('work-with-us', formatearJsonWithFile(formSerialized,fileCV))
338 339 340 341 342 343 344
            .then(response => {
                if(response.status==200 || response.status==302){
                    location.replace(response.url);
                }else{
                    console.log(response.text().then(value => console.log(value)))
                }
            });
345
        }
346
    noValidateFlag = false
347 348
} );

349 350 351 352 353 354 355 356


//Metodos para Estudios



function agregarFieldEstudio(){
    //recoger del form
357 358
    let pairs = {};
    const formest = document.querySelector("[name=estudio-form]");
359
    const formData = new FormData(formest);
360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384

    //Validacion
    let returnFlag = false;

    let requiredValues = ["tipoDeEstudio", "institucion", "estado", "fechaDesde", "temaDeEstudio"]

    formData.forEach((value, key)=>{
        if(requiredValues.includes(key)
            && value==="" && returnFlag == false){
            console.log(key, value)
            returnFlag = true;
        }
    });

    if(returnFlag===true){
        let message = "Rellene "
        for(let i=0;i<requiredValues.length;i++){
            message+=", "+requiredValues[i];
        }
        message += " como minimo."
        alert(message);
        return;
    }


385 386
    const estudioReconocimiento = [{},{},{}];
    let pos_rec;
387
    for (const [name, value] of formData){
388 389 390 391 392 393 394 395
        pos_rec = name.split("-");//rec-nombre-index
        if (pos_rec.length > 1) {
            estudioReconocimiento[pos_rec[2]][pos_rec[1]] = value
        }
        else{
            pairs[name] = value
        }
        
396
    }
397 398 399 400 401 402
    let nombre = pairs["institucion"]
    delete pairs["institucion"]
    console.log(pairs)
    pairs["institucion"] = {  }
    pairs["institucion"].nombre = nombre
    pairs["institucion"].subNombre = ""
403
    pairs["estudioReconocimiento"] = estudioReconocimiento.filter(rec => rec.nombre);
404 405 406 407 408
    estudios[cont_estudios] = pairs;
    formest.reset();
    //imprimir lista actualizada
    const div = document.querySelector("#estudios")
    const div1 = document.createElement('div');
409
    let content='';
410 411 412 413 414
    
    for (let index = 0; index < estudios.length; index++) {
        const est = estudios[index];
        if(est==null) continue;
        content += `
415 416 417 418 419 420 421 422
        <div class="col border border-3" id="est-${index}">
            <h4><center>Estudio</center></h4>
            <label><b>Institucion:</b> ${est.institucion.nombre}</label><br>
            <label><b>Tipo de estudio:</b> ${est.tipoDeEstudio}</label><br>  
            <label><b>Carrera:</b> ${est.temaDeEstudio}</label><br>     
            <label><b>Fecha Inicio:</b> ${est.fechaDesde}</label><br>
            <label><b>Fecha Fin:</b> ${est.fechaHasta}</label><br>
            <label><b>Estado:</b> ${est.estado}</label><br>
423
            <button type="button" class="btn btn-primary" onclick="eliminarEstudio(event)">Eliminar</button>
424
        </div>
425 426 427
        
        `
    }
428 429 430 431
 
    div.innerHTML = content
    //div.innerHTML = '';
    //div.appendChild(div1);
432 433 434 435
    cont_estudios++;

}

436 437 438 439




440 441 442 443 444 445
function eliminarEstudio(event) {
    //eliminar del array
    estudios[event.target.parentElement.id.split("-")[1]]=null
    //eliminar en html
    event.target.parentElement.remove()
}
willgonzz committed
446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474
/*--------------------------------------------------------------------*/
function agregarFieldCargo(){
    //recoger del form
    const pairs = {};
    const formcar = document.querySelector("[name=cargo-form]");
    const formData = new FormData(formcar);

    //Validacion
    let returnFlag = false;

    let requiredValues = ["nombre"]

    formData.forEach((value, key)=>{
        if(requiredValues.includes(key)
            && value==="" && returnFlag == false){
            console.log(key, value)
            returnFlag = true;
        }
    });

    if(returnFlag===true){
        let message = "Rellene "
        for(let i=0;i<requiredValues.length;i++){
            message+=", "+requiredValues[i];
        }
        message += " como minimo."
        alert(message);
        return;
    }
475

willgonzz committed
476 477 478 479
    for (const [name, value] of formData){
        pairs[name] = value
    }
    console.log(pairs)
480 481 482 483
    for(let i=0;i<cont_cargo;i++){
        if(postulaciones[i]!==null){
            if(postulaciones[i]["id"]===pairs["cargo-id"]){
                alert("Ya has agregado ese cargo!")
484
                //cont_cargo--;
485 486 487 488
                return;
            }
        }
    }
willgonzz committed
489 490 491 492 493 494 495 496 497
    postulaciones[cont_cargo]={}
    postulaciones[cont_cargo]["id"]=pairs["cargo-id"]
    //postulaciones[cont_cargo]["cargo"]=pairs["cargo-id"]=="-1"?{nombre: pairs["cargo-nombre"]}:{id: pairs["cargo-id"],nombre:document.querySelector('[name=cargo-id] > option[value="'+pairs["cargo-id"]+'"]').innerHTML}
    console.log(postulaciones)
    formcar.reset();
    //imprimir lista actualizada
    const div = document.querySelector("#cargos")
    const div1 = document.createElement('div');

498
    let content1=''
willgonzz committed
499 500 501 502
    for (let index = 0; index < postulaciones.length; index++) {
        const car = postulaciones[index];
        if(car==null) continue;
        content1 += `
503 504 505 506 507
        <div class="col border border-3" id="car-${index}" style="text-transform: uppercase;">
            <label>${document.querySelector('[name=cargo-id] > option[value="'+car.id+'"]').innerHTML}</label><br>        
            <button  type="button" class="btn btn-primary" onclick="eliminarCargoPostulante(event)">Eliminar</button><br>
        </div>

willgonzz committed
508 509
        `
    }
510 511 512 513
    //content1 += "</ul>" 
    div.innerHTML = content1
    //div.innerHTML = '';
    //div.appendChild(div1);
willgonzz committed
514
    cont_cargo++;
515
    document.querySelector("#no-valid-cargo").style.display = "none";
willgonzz committed
516 517 518 519 520 521 522 523 524 525
}

/*---------------------------------------------------------------------------------------------------*/
function eliminarCargoPostulante(event) {
    //eliminar del array
    postulaciones[event.target.parentElement.id.split("-")[1]]=null
    //eliminar en html
    event.target.parentElement.remove()
}
/*--------------------------------------------------------------------*/
526 527


528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551
//evento para cambio de ciudad segun departamento
const depSelect = document.querySelector("#departamentos");
depSelect.addEventListener("change",evt => listarCiudades(evt.target.value))
listarCiudades(depSelect.value);
//variable ciudades esta declarada en el jsp
/**
 * Listar todas las ciudades en el select de ciudades
 * @param {*} depId 
 */
function listarCiudades(depId){
    const ciuAmostrar = ciudades.filter(c=>c.departamentoId==depId);
    const ciudad = document.querySelector("select[name=ciudadId]");
    const frag = document.createDocumentFragment();
    for (const ciu of ciuAmostrar) {
        const opt = document.createElement("option");    
        opt.value = ciu.id;
        opt.innerHTML = ciu.nombre;
        opt.setAttribute("data-departamentoId",ciu.departamentoId);
        frag.appendChild(opt)
    }
    ciudad.replaceChildren(frag);
    
    
}
552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599



function agregarFieldReferencia(event){
    //recoger del form
    const pairs = {};
    const formexp = document.querySelector("[name=referencia-form]");
    const formData = new FormData(formexp);
    const referenciaPersonal = [{},{},{}];
    let pos_rec;
    let returnFlag = false;

    let requiredValues = ["nombre", "relacion", "telefono"]

    formData.forEach((value, key)=>{
        if(requiredValues.includes(key)
        && value==="" && returnFlag == false){
            console.log(key, value)
            returnFlag = true;
        }
    });

    if(returnFlag===true){
        let message = "Rellene "
        for(let i=0;i<requiredValues.length;i++){
            message+=", "+requiredValues[i];
        }
        message += " como minimo."
        alert(message);
        return;
    }

    for (const [name, value] of formData){
        pos_rec = name.split("-");//rec-nombre-index
        if (pos_rec.length > 1) {
            referenciaPersonal[pos_rec[2]][pos_rec[1]] = value
        }
        else{
            pairs[name] = value
        }

    }
    pairs["referenciaPersonal"] = referenciaPersonal.filter(rec => rec.nombre);
    referencias[cont_referencias] = pairs;
    formexp.reset();
    //imprimir lista actualizada
    const div = document.querySelector("#referencia")
    const div1 = document.createElement('div');
600
    let content=''
601 602 603 604
    for (let index = 0; index < referencias.length; index++) {
        const exp = referencias[index];
        if(exp==null) continue;
        content += `
605 606 607 608 609 610 611
        <div class="col border border-3" id="exp-${index}"> 
            <h4><center>Referencia Personal</center></h4>       
            <label><b>Nombre:</b> ${exp.nombre}</label><br>
            <label><b>Telefono:</b> ${exp.telefono}</label><br>
            <label><b>Relacion:</b> ${exp.relacion}</label><br>
            <button type="button" class="btn btn-primary" onclick="eliminarReferencia(event)"> <span class="glyphicon glyphicon-trash"></span>Eliminar</button>
        </div>
612 613 614
        
        `
    }
615 616 617 618
    //content += "</ul>" 
    div.innerHTML = content
    //div.innerHTML = '';
    //div.appendChild(div1);
619 620 621 622 623 624 625 626 627 628 629 630 631 632
    cont_referencias++;
}

/*----------------------------------------------------------------- */
function eliminarReferencia(event) {
    //eliminar del array
    referencias[event.target.parentElement.id.split("-")[1]]=null
    //eliminar en html
    event.target.parentElement.remove()
}
/*----------------------------------------------------------------- */



633
/*--------------------------------------------------------------------------------------------------------- */
634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686
// $(function(){
//     $("#wizard").steps({
//     headerTag: "h4",
//     bodyTag: "section",
//     transitionEffect: "fade",
//     enableAllSteps: true,
//     transitionEffectSpeed: 500,
//     onStepChanging: function (event, currentIndex, newIndex) {
//     if ( newIndex === 1 ) {
//     $('.steps ul').addClass('step-2');
//     } else {
//     $('.steps ul').removeClass('step-2');
//     }
//     if ( newIndex === 2 ) {
//     $('.steps ul').addClass('step-3');
//     } else {
//     $('.steps ul').removeClass('step-3');
//     }
//
//     if ( newIndex === 3 ) {
//     $('.steps ul').addClass('step-4');
//     $('.actions ul').addClass('step-last');
//     } else {
//     $('.steps ul').removeClass('step-4');
//     $('.actions ul').removeClass('step-last');
//     }
//     return true;
//     },
//     labels: {
//     finish: "Order again",
//     next: "Next",
//     previous: "Previous"
//     }
//     });
//     // Custom Steps Jquery Steps
//     $('.wizard > .steps li a').click(function(){
//     $(this).parent().addClass('checked');
//     $(this).parent().prevAll().addClass('checked');
//     $(this).parent().nextAll().removeClass('checked');
//     });
//     // Custom Button Jquery Steps
//     $('.forward').click(function(){
//     $("#wizard").steps('next');
//     })
//     $('.backward').click(function(){
//     $("#wizard").steps('previous');
//     })
//     // Checkbox
//     $('.checkbox-circle label').click(function(){
//     $('.checkbox-circle label').removeClass('active');
//     $(this).addClass('active');
//     })
//     })
687
/*--------------------------------------------------------------------------------------------------------- */