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 774... Línea 774...
774
        validatorFormSection.resetForm();
774
        validatorFormSection.resetForm();
Línea 775... Línea 775...
775
       
775
       
776
        $('#form-section #section-slug').val('');
776
        $('#form-section #section-slug').val('');
777
        $('#form-section #section-name').val('');
777
        $('#form-section #section-name').val('');
778
        $('#form-section #section-text').val('');
778
        $('#form-section #section-text').val('');
779
        $('#modal-section h4[class="modal-title"]').html('LABEL_ADD LABEL_SECTION');
779
        $('#modal-section h6[class="modal-title"]').html('LABEL_ADD LABEL_SECTION');
780
        $('#modal-section').modal('show');
780
        $('#modal-section').modal('show');
Línea 781... Línea 781...
781
    });
781
    });
782
 
782
 
Línea 795... Línea 795...
795
                showForm = true;
795
                showForm = true;
796
                break;
796
                break;
797
            }
797
            }
798
        }
798
        }
799
        if (showForm) {
799
        if (showForm) {
800
            $('#modal-section h4[class="modal-title"]').html('LABEL_EDIT LABEL_SECTION');
800
            $('#modal-section h6[class="modal-title"]').html('LABEL_EDIT LABEL_SECTION');
801
            $('#modal-section').modal('show');
801
            $('#modal-section').modal('show');
802
        }
802
        }
803
    });
803
    });
Línea 804... Línea 804...
804
 
804
 
Línea 826... Línea 826...
826
        var slug = $(this).data('section');
826
        var slug = $(this).data('section');
827
        $('#form-question #question-section').val(slug);
827
        $('#form-question #question-section').val(slug);
828
        $('#form-question #question-slug').val('');
828
        $('#form-question #question-slug').val('');
829
        $('#form-question #question-text').val('');
829
        $('#form-question #question-text').val('');
830
        $('#form-question #question-type').val($('#form-question #question-type option:first').val());
830
        $('#form-question #question-type').val($('#form-question #question-type option:first').val());
831
        $('#modal-question h4[class="modal-title"]').html('LABEL_ADD LABEL_QUESTION');
831
        $('#modal-question h6[class="modal-title"]').html('LABEL_ADD LABEL_QUESTION');
832
        $('#modal-question').modal('show');
832
        $('#modal-question').modal('show');
833
    });
833
    });
Línea 834... Línea 834...
834
 
834
 
835
    $('body').on('click', 'button.btn-edit-question', function(e) {
835
    $('body').on('click', 'button.btn-edit-question', function(e) {
Línea 853... Línea 853...
853
                }
853
                }
854
                break;
854
                break;
855
            }
855
            }
856
        }
856
        }
857
        if (showForm) {
857
        if (showForm) {
858
            $('#modal-question h4[class="modal-title"]').html('LABEL_EDIT LABEL_QUESTION');
858
            $('#modal-question h6[class="modal-title"]').html('LABEL_EDIT LABEL_QUESTION');
859
            $('#modal-question').modal('show');
859
            $('#modal-question').modal('show');
860
        }
860
        }
861
    });
861
    });
Línea 862... Línea 862...
862
 
862
 
Línea 894... Línea 894...
894
                        $('#form-option #option-section').val(slug_section);
894
                        $('#form-option #option-section').val(slug_section);
895
                        $('#form-option #option-question').val(slug_question);
895
                        $('#form-option #option-question').val(slug_question);
896
                        $('#form-option #option-slug').val('');
896
                        $('#form-option #option-slug').val('');
897
                        $('#form-option #option-text').val('');
897
                        $('#form-option #option-text').val('');
Línea 898... Línea 898...
898
 
898
 
899
                        $('#modal-option h4[class="modal-title"]').html('LABEL_ADD LABEL_OPTION');
899
                        $('#modal-option h6[class="modal-title"]').html('LABEL_ADD LABEL_OPTION');
900
                        $('#modal-option').modal('show');
900
                        $('#modal-option').modal('show');
901
                        return true;
901
                        return true;
902
                    }
902
                    }
903
                }
903
                }
Línea 936... Línea 936...
936
            if (showForm) {
936
            if (showForm) {
937
                break;
937
                break;
938
            }
938
            }
939
        }
939
        }
940
        if (showForm) {
940
        if (showForm) {
941
            $('#modal-option h4[class="modal-title"]').html('LABEL_EDIT LABEL_OPTION');
941
            $('#modal-option h6[class="modal-title"]').html('LABEL_EDIT LABEL_OPTION');
942
            $('#modal-option').modal('show');
942
            $('#modal-option').modal('show');
943
        }
943
        }
944
    });
944
    });