Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 16929 Rev 16933
Línea 230... Línea 230...
230
    $('#btn-add-section').click(function(e) {
230
    $('#btn-add-section').click(function(e) {
231
        $('#form-section #id-section').val('');
231
        $('#form-section #id-section').val('');
232
        $('#form-section #title-section').val('');
232
        $('#form-section #title-section').val('');
233
        $('#form-section #text-section').val('');
233
        $('#form-section #text-section').val('');
234
        $('#form-section #type-section').val($('#form-section #type-section option:first').val());
234
        $('#form-section #type-section').val($('#form-section #type-section option:first').val());
235
        $('#modal-section h4[class="modal-title"]').html('LABEL_ADD LABEL_SECTION');
235
        $('#modal-section h6[class="modal-title"]').html('LABEL_ADD LABEL_SECTION');
236
        $('#modal-section').modal('show');
236
        $('#modal-section').modal('show');
237
        return;
237
        return;
238
    });
238
    });
239
    /**
239
    /**
240
     * Clicked edit section
240
     * Clicked edit section
Línea 317... Línea 317...
317
     */
317
     */
318
    $('body').on('click', 'button.btn-add-option', function(e) {
318
    $('body').on('click', 'button.btn-add-option', function(e) {
319
        var id = $(this).data('section');
319
        var id = $(this).data('section');
320
        $('#section-option').val(id);
320
        $('#section-option').val(id);
321
        $('#text-option').val('');
321
        $('#text-option').val('');
322
        $('#modal-option h4[class="modal-title"]').html('LABEL_EDIT LABEL_OPTION');
322
        $('#modal-option h6[class="modal-title"]').html('LABEL_EDIT LABEL_OPTION');
323
        $('#modal-option').modal('show');
323
        $('#modal-option').modal('show');
324
        return;
324
        return;
325
    });
325
    });
326
    /**
326
    /**
327
     * Clicked add new Option
327
     * Clicked add new Option
Línea 349... Línea 349...
349
                item.options.map((opt) => {
349
                item.options.map((opt) => {
350
                    if (opt.id_option == id_option) {
350
                    if (opt.id_option == id_option) {
351
                        $('#id-option').val(opt.id_option);
351
                        $('#id-option').val(opt.id_option);
352
                        $('#section-option').val(opt.id_section);
352
                        $('#section-option').val(opt.id_section);
353
                        $("#text-option").val(opt.title);
353
                        $("#text-option").val(opt.title);
354
                        $('#modal-option h4[class="modal-title"]').html('LABEL_EDIT LABEL_OPTION');
354
                        $('#modal-option h6[class="modal-title"]').html('LABEL_EDIT LABEL_OPTION');
355
                        $('#modal-option').modal('show');
355
                        $('#modal-option').modal('show');
356
                        return;
356
                        return;
357
                    }
357
                    }
358
                });
358
                });
359
            }
359
            }