Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 1025 Rev 1026
Línea 303... Línea 303...
303
    });
303
    });
Línea 304... Línea 304...
304
 
304
 
305
    /**
305
    /**
306
     * Clicked remove section
306
     * Clicked remove section
307
     */
307
     */
-
 
308
    $('body').on('click', 'button.btn-delete-section', function(e) {
308
    $('.btn-delete-section').click(function(e) {
309
        e.preventDefault();
309
        var id = $(this).data('section');
310
        var id = $(this).data('section');
310
        bootbox.confirm({
311
        bootbox.confirm({
311
            title: "LABEL_DELETE LABEL_SECTION",
312
            title: "LABEL_DELETE LABEL_SECTION",
312
            message: "LABEL_SECTION_DELETE",
313
            message: "LABEL_SECTION_DELETE",
Línea 324... Línea 325...
324
                }
325
                }
325
            }
326
            }
326
        });
327
        });
327
    });
328
    });
Línea 328... Línea 329...
328
 
329
 
-
 
330
    $('body').on('click', 'button.btn-edit-section', function(e) {
-
 
331
        e.preventDefault();
329
    $("button.btn-edit-section").click(function(){
332
        
330
    console.log(1);
333
    console.log(1);
Línea 331... Línea 334...
331
});
334
});
Línea 654... Línea 657...
654
                                    {{if type == 'multiple'}} Multiple {{/if}}
657
                                    {{if type == 'multiple'}} Multiple {{/if}}
Línea 655... Línea 658...
655
            
658
            
656
 
659
 
657
                                </td>
660
                                </td>
Línea 658... Línea 661...
658
                                <td>
661
                                <td>
Línea 659... Línea 662...
659
                                    <button type="button" class="btn btn-default btn-edit-section" data-section="{{:id_section}}" data-toggle="tooltip"  data-original-title="LABEL_EDIT LABEL_SECTION"><i class="fa fa-edit" aria-hidden="true"></i> LABEL_EDIT LABEL_SECTION </button>
662
                                    <button  class="btn btn-default btn-edit-section" data-section="{{:id_section}}" data-toggle="tooltip"  data-original-title="LABEL_EDIT LABEL_SECTION"><i class="fa fa-edit" aria-hidden="true"></i> LABEL_EDIT LABEL_SECTION </button>
660
 
663
 
661
                                    <button  type="button" class="btn btn-default btn-delete-section" data-section="{{:id_section}}" data-toggle="tooltip"  data-original-title="LABEL_DELETE LABEL_SECTION"><i class="fa fa-ban" aria-hidden="true"></i> LABEL_DELETE LABEL_SECTION </button> 
664
                                    <button  class="btn btn-default btn-delete-section" data-section="{{:id_section}}" data-toggle="tooltip"  data-original-title="LABEL_DELETE LABEL_SECTION"><i class="fa fa-ban" aria-hidden="true"></i> LABEL_DELETE LABEL_SECTION </button> 
662
 
665