Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 1018 Rev 1019
Línea 261... Línea 261...
261
        $('#modal-section').modal('show');
261
        $('#modal-section').modal('show');
262
    });
262
    });
263
    /**
263
    /**
264
     * Clicked edit section
264
     * Clicked edit section
265
     */
265
     */
266
    $('.btn-edit-section').click(function(e) {
266
    $('button.btn-edit-section').click(function(e) {
267
        var id = $(this).data('section');
267
        var id = $(this).data('section');
268
        sections.map((item) => {
268
        sections.map((item) => {
269
            if (section.id == id) {
269
            if (section.id == id) {
Línea 270... Línea 270...
270
 
270
 
Línea 280... Línea 280...
280
    });
280
    });
Línea 281... Línea 281...
281
 
281
 
282
    /**
282
    /**
283
     * Clicked edit section
283
     * Clicked edit section
284
     */
284
     */
285
    $('.btn-delete-section').click(function(e) {
285
    $('button.btn-delete-section').click(function(e) {
286
        var id = $(this).data('section');
286
        var id = $(this).data('section');
287
        bootbox.confirm({
287
        bootbox.confirm({
288
            title: "LABEL_DELETE LABEL_CONDUCT",
288
            title: "LABEL_DELETE LABEL_CONDUCT",
289
            message: "LABEL_QUESTION_DELETE",
289
            message: "LABEL_QUESTION_DELETE",