-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22 from SkwalExe/fix-zindex
Fix zindex bug and fix npm scripts
- Loading branch information
Showing
4 changed files
with
12 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
# 0.1.4 - 2024-07-19 | ||
|
||
### Fixed | ||
- Bug with ZIndex | ||
|
||
# 0.1.3 - 2024-05-25 | ||
|
||
### Fixed | ||
|
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 |
---|---|---|
|
@@ -48,7 +48,7 @@ import WinMB from '@skwalexe/winmb' | |
If you use this method, the library will be available globally as `WinMB`. | ||
|
||
```js | ||
<script src="https://cdn.jsdelivr.net/npm/@skwalexe/[email protected].3/dist/winmb.umd.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/@skwalexe/[email protected].4/dist/winmb.umd.js"></script> | ||
``` | ||
|
||
# Using this library 📦 | ||
|
@@ -58,7 +58,7 @@ This library exports a `WinMB` class which acccepts the following parameters: | |
- `assetsUrl / required`: WinMB needs to load **remote assets** such as css stylesheets, sounds, and images, which you can host on your own servers. This parameter is used to tell WinMB where it can find these assets. You must provide a **base url**, to which WinMB will just append the requested asset's file name. If you don't want to host the assets yourself, you can use JSDelivr like in the example below. | ||
|
||
```js | ||
const wmbEngine = WinMB('https://cdn.jsdelivr.net/gh/SkwalExe/[email protected].3/src/assets/') | ||
const wmbEngine = WinMB('https://cdn.jsdelivr.net/gh/SkwalExe/[email protected].4/src/assets/') | ||
``` | ||
|
||
Once you instanciated the `WinMB` class, it exposes the follwing methods: | ||
|
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