|
Server : Apache/2.4.41 (Ubuntu) System : Linux vmi1525618.contaboserver.net 5.4.0-105-generic #119-Ubuntu SMP Mon Mar 7 18:49:24 UTC 2022 x86_64 User : www-data ( 33) PHP Version : 8.2.12 Disable Function : NONE Directory : /var/www/demo.aadityaguptaclasses.com/resources/js/panel/ |
Upload File : |
(function ($) {
"use strict";
$('body').on('click', '.js-view-comment', function (e) {
e.preventDefault();
var $this = $(this);
var comment_id = $this.attr('data-comment-id');
var comment = $('#commentDescription' + comment_id).val();
var html = '<div class="">' +
'<h3 class="section-title after-line">' + commentLang + '</h3>' +
'<p class="font-weight-500 text-gray mt-20">' + comment + '</p>' +
'</div>';
Swal.fire({
html: html,
showCancelButton: false,
showConfirmButton: false,
customClass: {
content: 'p-0 text-left',
},
width: '40rem',
});
});
})(jQuery);