update banners to absolute paths

Signed-off-by: Lorenzo Lewis <lorenzo_lewis@icloud.com>
This commit is contained in:
Lorenzo Lewis
2023-07-28 19:47:34 +01:00
parent 7cc86edae8
commit c8b8f9309e
27 changed files with 93 additions and 93 deletions
+3 -3
View File
@@ -1,4 +1,4 @@
![plugin-window-state](banner.png)
![plugin-window-state](https://github.com/tauri-apps/plugins-workspace/raw/v2/plugins/window-state/banner.png)
Save window positions and sizes and restore them when the app is reopened.
@@ -71,7 +71,7 @@ app.save_window_state(StateFlags::all()); // will save the state of all open win
or through Javascript
```javascript
import { saveWindowState, StateFlags } from "@tauri-apps/plugin-window-state";
import { saveWindowState, StateFlags } from '@tauri-apps/plugin-window-state';
saveWindowState(StateFlags.ALL);
```
@@ -91,7 +91,7 @@ or through Javascript
import {
restoreStateCurrent,
StateFlags,
} from "@tauri-apps/plugin-window-state";
} from '@tauri-apps/plugin-window-state';
restoreStateCurrent(StateFlags.ALL);
```