mirror of
https://github.com/LCPQ/QUESTDB_website.git
synced 2024-11-04 05:03:53 +01:00
41 lines
1.1 KiB
JavaScript
41 lines
1.1 KiB
JavaScript
|
// Static comments
|
||
|
// from: https://github.com/eduardoboucas/popcorn/blob/gh-pages/js/main.js
|
||
|
(function ($) {
|
||
|
var $comments = $('.js-comments');
|
||
|
|
||
|
$('.js-form').submit(function () {
|
||
|
var form = this;
|
||
|
|
||
|
$(form).addClass('form--loading');
|
||
|
|
||
|
$.ajax({
|
||
|
type: $(this).attr('method'),
|
||
|
url: $(this).attr('action'),
|
||
|
data: $(this).serialize(),
|
||
|
contentType: 'application/x-www-form-urlencoded',
|
||
|
success: function (data) {
|
||
|
showModal('Perfect !', 'Thanks for your comment! It will show on the site once it has been approved. .');
|
||
|
$(form).removeClass('form--loading');
|
||
|
},
|
||
|
error: function (err) {
|
||
|
console.log(err);
|
||
|
showModal('Error', 'Sorry, there was an error with the submission!');
|
||
|
$(form).removeClass('form--loading');
|
||
|
}
|
||
|
});
|
||
|
|
||
|
return false;
|
||
|
});
|
||
|
|
||
|
$('.js-close-modal').click(function () {
|
||
|
$('body').removeClass('show-modal');
|
||
|
});
|
||
|
|
||
|
function showModal(title, message) {
|
||
|
$('.js-modal-title').text(title);
|
||
|
$('.js-modal-text').html(message);
|
||
|
|
||
|
$('body').addClass('show-modal');
|
||
|
}
|
||
|
})(jQuery);
|