-
-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed a bug when editing an existing note the user would be unable to…
… change when it repeats. Changed the behaviour for new notes or editing notes the title is now the field in focus when the dialog opens. Made the default title empty for new notes. Moved the Note Default Player Visibility setting to be under the calendars general settings. Fixed some spacing issues of elements on the Calendar display. Added support for exposed show function that can be used in macros. Updated to the latest types for foundry. Updated a bunch of tests and functions to work better with the new types and ensuring better functionality with the foundry system.
- Loading branch information
Showing
22 changed files
with
1,271 additions
and
202 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
const mergeO = jest.fn(()=>{return {target: {offsetHeight: 0}};}); | ||
|
||
// @ts-ignore | ||
global.mergeObject = mergeO; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
|
||
|
||
class TE { | ||
changeResult: any = null; | ||
|
||
create () { | ||
return Promise.resolve({on: this.on.bind(this)}); | ||
} | ||
|
||
on(a: string, b: Function){ | ||
this.changeResult = b; | ||
} | ||
} | ||
|
||
//@ts-ignore | ||
global.TextEditor = new TE(); |
Oops, something went wrong.