Use of toggleClass
This commit is contained in:
@@ -11,7 +11,9 @@
|
|||||||
- Spanish real translation by Alejabar (thanks !)
|
- Spanish real translation by Alejabar (thanks !)
|
||||||
- Added a GM Dialog Tool for setting global difficulty (TN) value / hidden (with DicePicker live refresh)
|
- Added a GM Dialog Tool for setting global difficulty (TN) value / hidden (with DicePicker live refresh)
|
||||||
- Compendium now display Ring and Rank if any in list view
|
- Compendium now display Ring and Rank if any in list view
|
||||||
- DicePicker : Fixed the initial display of "use a void point"
|
- DicePicker :
|
||||||
|
- Fixed the initial display of "use a void point"
|
||||||
|
- No free void point anymore
|
||||||
- PC/NPC Sheet :
|
- PC/NPC Sheet :
|
||||||
- Added a visual indicator for equipped / readied
|
- Added a visual indicator for equipped / readied
|
||||||
- Now only equipped armor / weapon will show in conflict tab, and all armors/weapons now show in inventory tab
|
- Now only equipped armor / weapon will show in conflict tab, and all armors/weapons now show in inventory tab
|
||||||
|
|||||||
@@ -159,7 +159,7 @@ export class BaseSheetL5r5e extends ActorSheet {
|
|||||||
event.stopPropagation();
|
event.stopPropagation();
|
||||||
const elmt = $(event.currentTarget).data("toggle");
|
const elmt = $(event.currentTarget).data("toggle");
|
||||||
const tgt = html.find("." + elmt);
|
const tgt = html.find("." + elmt);
|
||||||
tgt.hasClass("toggle-active") ? tgt.removeClass("toggle-active") : tgt.addClass("toggle-active");
|
tgt.toggleClass("toggle-active");
|
||||||
});
|
});
|
||||||
|
|
||||||
// *** Everything below here is only needed if the sheet is editable ***
|
// *** Everything below here is only needed if the sheet is editable ***
|
||||||
|
|||||||
@@ -165,7 +165,7 @@ export class TwentyQuestionsDialog extends FormApplication {
|
|||||||
event.stopPropagation();
|
event.stopPropagation();
|
||||||
const elmt = $(event.currentTarget).data("toggle");
|
const elmt = $(event.currentTarget).data("toggle");
|
||||||
const tgt = html.find("." + elmt);
|
const tgt = html.find("." + elmt);
|
||||||
tgt.hasClass("toggle-active") ? tgt.removeClass("toggle-active") : tgt.addClass("toggle-active");
|
tgt.toggleClass("toggle-active");
|
||||||
});
|
});
|
||||||
|
|
||||||
// BT Next
|
// BT Next
|
||||||
|
|||||||
@@ -89,7 +89,7 @@ export class ItemSheetL5r5e extends ItemSheet {
|
|||||||
event.stopPropagation();
|
event.stopPropagation();
|
||||||
const elmt = $(event.currentTarget).data("toggle");
|
const elmt = $(event.currentTarget).data("toggle");
|
||||||
const tgt = html.find("." + elmt);
|
const tgt = html.find("." + elmt);
|
||||||
tgt.hasClass("toggle-active") ? tgt.removeClass("toggle-active") : tgt.addClass("toggle-active");
|
tgt.toggleClass("toggle-active");
|
||||||
});
|
});
|
||||||
|
|
||||||
// Everything below here is only needed if the sheet is editable
|
// Everything below here is only needed if the sheet is editable
|
||||||
|
|||||||
Reference in New Issue
Block a user