Server IP : 192.185.129.71 / Your IP : 18.217.69.43 Web Server : Apache System : Linux bh-ht-3.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : svymadmin ( 4072) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home4/svymadmin/public_html/vivekaexcel.edu.in/bkp/assets/themes/perfex/js/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
$.fn.appFormValidator.internal_options.on_required_add_symbol = false; $(function() { // Fix for dropdown in tables $('body').on('shown.bs.dropdown', '.btn-group', function() { $(this).closest('.table-responsive').css("overflow", "inherit"); }); $('body').on('hidden.bs.dropdown', '.btn-group', function() { $(this).closest('.table-responsive').css("overflow", "auto"); }); appSelectPicker($('body').find('select')); appProgressBar(); appLightbox(); appColorPicker(); appDatepicker(); // Lightbox for knowledge base images $.each($('.kb-article').find('img'), function() { if(!$(this).parent().is('a')){ $(this).wrap('<a href="' + $(this).attr('src') + '" data-lightbox="kb-attachment"></a>'); } }); $('body').tooltip({ selector: '[data-toggle="tooltip"]' }); // Init popovers $('body').popover({ selector: '[data-toggle="popover"]' }); $('.article_useful_buttons button').on('click', function(e) { e.preventDefault(); var data = {}; data.answer = $(this).data('answer'); data.articleid = $('input[name="articleid"]').val(); $.post(site_url + 'knowledge_base/add_kb_answer', data).done(function(response) { response = JSON.parse(response); if (response.success == true) { $(this).focusout(); } $('.answer_response').html(response.message); }); }); $('#identityConfirmationForm').appFormValidator({ rules: { acceptance_firstname: 'required', acceptance_lastname: 'required', signature: 'required', acceptance_email: { email: true, required: true } }, messages: { signature: { required: app.lang.sign_document_validation, }, }, }); $('body.identity-confirmation #accept_action').on('click', function() { var $submitForm = $('#identityConfirmationForm'); if ($submitForm.length && !$submitForm.validate().checkForm()) { $('#identityConfirmationModal').modal({ show: true, backdrop: 'static', keyboard: false }); } else { $(this).prop('disabled', true); $submitForm.submit(); } return false; }); }); function createDropzone(elementId, options) { var defaults = appCreateDropzoneOptions({ paramName: "file", uploadMultiple: true, parallelUploads: 20, maxFiles: 20, accept: function(file, done) { done(); }, success: function(file, response) { if (this.getUploadingFiles().length === 0 && this.getQueuedFiles().length === 0) { window.location.reload(); } }, }); var settings = $.extend({}, defaults, options); new Dropzone(elementId, settings); } function change_contact_language(element) { var path = 'authentication/change_language/' + $(element).val(); window.location.href = site_url + path; }