2022-01-18 14:54:08 +00:00
|
|
|
$(function() {
|
2022-01-20 12:45:09 +00:00
|
|
|
/**
|
|
|
|
* User Warning
|
|
|
|
*/
|
2022-01-18 14:54:08 +00:00
|
|
|
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');
|
|
|
|
}
|
|
|
|
});
|