Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 414 Rev 415
Línea 312... Línea 312...
312
    $('body').on('click', 'button.btn-add-review', function(e) {
312
    $('body').on('click', 'button.btn-add-review', function(e) {
313
        e.preventDefault();
313
        e.preventDefault();
314
        objFormGenerator.editQuestion(
314
        objFormGenerator.editQuestion(
315
            $(this).data('section'),
315
            $(this).data('section'),
316
            $(this).data('question'),
316
            $(this).data('question'),
317
            $('#question-comment').val()
317
            $('#question-comment').val(),
318
            $('#question-status').val() =='1' ? true : false
318
            $('#question-status').val() =='1' ? true : false
319
        );
319
        );
320
        renderSectionData(objFormGenerator.sections);
320
        renderSectionData(objFormGenerator.sections);
321
    });
321
    });
322
    /**
322
    /**