Exclude related JavaScript function from staff Ticket view when attachments are not enabled

This commit is contained in:
Georg Lehner 2024-06-10 11:24:00 +02:00
parent 3dcbdad638
commit 78cf89ca9b

View File

@ -266,7 +266,7 @@ $( function() {
</script> </script>
<script type='text/javascript' language='javascript'> <script type='text/javascript' language='javascript'>
$(document).ready(function() { $(document).ready(function() {
$("#ShowFurtherEditOptions").click(function() { $("#ShowFurtherEditOptions").click(function() {
$("#FurtherEditOptions").toggle(); $("#FurtherEditOptions").toggle();
}); });
@ -275,11 +275,6 @@ $(document).ready(function() {
$("#checklistEdit").toggle(); $("#checklistEdit").toggle();
}); });
$("#ShowFileUpload").click(function() {
$("#FileUpload").fadeIn();
$("#ShowFileUploadPara").hide();
});
$('#id_preset').change(function() { $('#id_preset').change(function() {
preset = $('#id_preset').val(); preset = $('#id_preset').val();
if (preset != '') { if (preset != '') {
@ -304,6 +299,12 @@ $(document).ready(function() {
$("[data-toggle=tooltip]").tooltip(); $("[data-toggle=tooltip]").tooltip();
{% if helpdesk_settings.HELPDESK_ENABLE_ATTACHMENTS %}
$("#ShowFileUpload").click(function() {
$("#FileUpload").fadeIn();
$("#ShowFileUploadPara").hide();
});
// lists for file input change events, then updates the associated text label // lists for file input change events, then updates the associated text label
// with the file name selected // with the file name selected
$('.add_file_fields_wrap').on('fileselect', ':file', function(event, numFiles, label, browseButtonNum) { $('.add_file_fields_wrap').on('fileselect', ':file', function(event, numFiles, label, browseButtonNum) {
@ -319,18 +320,20 @@ $(document).ready(function() {
e.preventDefault(); e.preventDefault();
$(wrapper).append("<div><label class='btn btn-primary btn-sm btn-file'>Browse... <input type='file' name='attachment' id='file" + x + "' multiple style='display: none;'/></label><span>&nbsp;</span><span id='selectedfilename" + x + "'>{% trans 'No files selected.' %}</span></div>"); //add input box $(wrapper).append("<div><label class='btn btn-primary btn-sm btn-file'>Browse... <input type='file' name='attachment' id='file" + x + "' multiple style='display: none;'/></label><span>&nbsp;</span><span id='selectedfilename" + x + "'>{% trans 'No files selected.' %}</span></div>"); //add input box
}); });
{% endif %}
});
}); {% if helpdesk_settings.HELPDESK_ENABLE_ATTACHMENTS %}
// this function listens for changes on any file input, and
// this function listens for changes on any file input, and // emits the appropriate event to update the input's text.
// emits the appropriate event to update the input's text. // Needed to have properly styled file input buttons! (this really shouldn't be this hard...)
// Needed to have properly styled file input buttons! (this really shouldn't be this hard...) $(document).on('change', ':file', function() {
$(document).on('change', ':file', function() {
var input = $(this), var input = $(this),
inputWidgetNum = $(this).attr('id').split("file")[1], inputWidgetNum = $(this).attr('id').split("file")[1],
numFiles = input.get(0).files ? input.get(0).files.length : 1, numFiles = input.get(0).files ? input.get(0).files.length : 1,
label = input.val().replace(/\\/g, '/').replace(/.*\//, ''); label = input.val().replace(/\\/g, '/').replace(/.*\//, '');
input.trigger('fileselect', [numFiles, label, inputWidgetNum]); input.trigger('fileselect', [numFiles, label, inputWidgetNum]);
}); });
</script> {% endif %}
</script>
{% endblock %} {% endblock %}