wishthis/includes/assets/js/wishlist.js
2022-01-20 14:33:06 +01:00

25 lines
629 B
JavaScript

$(function() {
/**
* User Warning
*/
if ($('.wishlist-own').length) {
$('body')
.modal({
title: $('.wishlist-own .header').text(),
content: $('.wishlist-own .text').html(),
class: '',
blurring: true,
closable: false,
actions: [
{
text: 'Show wishlist anyway',
class: 'approve primary'
}
],
onApprove: function() {
$('.wishlist-own').slideUp();
}
})
.modal('show');
}
});