Fix wishlist not selecting on reload
This commit is contained in:
parent
6c32ce3415
commit
cfdd49bb23
1 changed files with 5 additions and 5 deletions
|
@ -1,9 +1,4 @@
|
||||||
$(function() {
|
$(function() {
|
||||||
/**
|
|
||||||
* URL Parameter
|
|
||||||
*/
|
|
||||||
const urlParams = new URLSearchParams(window.location.search);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Fomantic UI
|
* Fomantic UI
|
||||||
*/
|
*/
|
||||||
|
@ -20,6 +15,11 @@ $(function() {
|
||||||
});
|
});
|
||||||
|
|
||||||
function wishlistRefresh() {
|
function wishlistRefresh() {
|
||||||
|
/**
|
||||||
|
* URL Parameter
|
||||||
|
*/
|
||||||
|
const urlParams = new URLSearchParams(window.location.search);
|
||||||
|
|
||||||
$('.ui.dropdown.wishlists').api({
|
$('.ui.dropdown.wishlists').api({
|
||||||
action: 'get wishlists',
|
action: 'get wishlists',
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
|
|
Loading…
Reference in a new issue