More fixes to allow further testing

This commit is contained in:
TJ 2021-01-04 22:16:56 -06:00
parent a597964bc4
commit e4e755fd68
5 changed files with 6 additions and 4 deletions

View file

@ -77,6 +77,9 @@ html {
body { body {
.openSans(13px, 400); .openSans(13px, 400);
background-image: url('./ui/SW5e-logo.svg');
background-repeat: no-repeat;
background-size: cover;
} }
h1 { h1 {

View file

@ -201,7 +201,7 @@ export default class ActorSheet5eCharacterNew extends ActorSheet5e {
if ( !this.options.editable ) return; if ( !this.options.editable ) return;
// Inventory Functions // Inventory Functions
html.find(".currency-convert").click(this._onConvertCurrency.bind(this)); // html.find(".currency-convert").click(this._onConvertCurrency.bind(this));
// Item State Toggling // Item State Toggling
html.find('.item-toggle').click(this._onToggleItem.bind(this)); html.find('.item-toggle').click(this._onToggleItem.bind(this));

View file

@ -16,7 +16,6 @@ export default class ActorSheet5eNPCNew extends ActorSheet5e {
static get defaultOptions() { static get defaultOptions() {
return mergeObject(super.defaultOptions, { return mergeObject(super.defaultOptions, {
classes: ["sw5e", "sheet", "actor", "npc"], classes: ["sw5e", "sheet", "actor", "npc"],
width: 600,
width: 800, width: 800,
tabs: [{ tabs: [{
navSelector: ".root-tabs", navSelector: ".root-tabs",

View file

@ -152,7 +152,7 @@ export default class Item5e extends Item {
const itemData = this.data; const itemData = this.data;
const data = itemData.data; const data = itemData.data;
const C = CONFIG.SW5E; const C = CONFIG.SW5E;
const labels = {}; const labels = this.labels = {};
// Classes // Classes
if ( itemData.type === "class" ) { if ( itemData.type === "class" ) {

View file

@ -91,7 +91,7 @@
{{!-- SPEED / MOVEMENT TYPES --}} {{!-- SPEED / MOVEMENT TYPES --}}
<section> <section>
<h1>{{ localize "SW5E.Movement" }}</h1> <h1>{{ localize "SW5E.Movement" }}</h1>
<<div class="attribute-value"> <div class="attribute-value">
<span>{{movement.primary}}</span> <span>{{movement.primary}}</span>
</div> </div>
<footer class="attribute-footer"> <footer class="attribute-footer">