fix: #83 switching to wish product tab breaks view
This commit is contained in:
parent
4e36305fbc
commit
7027012539
2 changed files with 11 additions and 2 deletions
|
@ -204,7 +204,7 @@ $(function () {
|
||||||
* Initialise
|
* Initialise
|
||||||
*/
|
*/
|
||||||
/** Checkbox */
|
/** Checkbox */
|
||||||
const checkbox_is_purchasable = wish_edit.find('.ui.checkbox.wish-is-purchasable');
|
var checkbox_is_purchasable = wish_edit.find('.ui.checkbox.wish-is-purchasable');
|
||||||
|
|
||||||
checkbox_is_purchasable
|
checkbox_is_purchasable
|
||||||
.checkbox({
|
.checkbox({
|
||||||
|
@ -238,7 +238,9 @@ $(function () {
|
||||||
|
|
||||||
/** Initialise Tabs */
|
/** Initialise Tabs */
|
||||||
wish_edit.find('.item[data-tab]')
|
wish_edit.find('.item[data-tab]')
|
||||||
.tab();
|
.tab({
|
||||||
|
'context' : '.wishlist-wish-edit'
|
||||||
|
});
|
||||||
|
|
||||||
/** General */
|
/** General */
|
||||||
var decoded_title = $('<div>').html(wish_local.title).text();
|
var decoded_title = $('<div>').html(wish_local.title).text();
|
||||||
|
|
|
@ -128,6 +128,13 @@ $page->navigation();
|
||||||
|
|
||||||
<h3 class="ui header"><?= __('Fixed') ?></h3>
|
<h3 class="ui header"><?= __('Fixed') ?></h3>
|
||||||
<ul>
|
<ul>
|
||||||
|
<li>
|
||||||
|
<?php
|
||||||
|
/** TRANSLATORS: Changelog: Fixed */
|
||||||
|
echo __('Switching to wish "product" tab breaks view');
|
||||||
|
?>
|
||||||
|
<a href="https://github.com/grandeljay/wishthis/issues/83" target="_blank">#83</a>
|
||||||
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<?php
|
<?php
|
||||||
/** TRANSLATORS: Changelog: Fixed */
|
/** TRANSLATORS: Changelog: Fixed */
|
||||||
|
|
Loading…
Reference in a new issue