You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs(js): recommend built-in plugin manager helpers for updates
Add section pointing developers to PluginHelpers.php make_link() and
the PluginAPI.php checkPlugin endpoint instead of rolling custom
update-check JavaScript.
Thanks @Squidly271 in issue #2
// Show your preferred indicator or enable update action.
702
+
}
703
+
}, 'json');
704
+
```
705
+
706
+
This keeps behavior aligned with core Unraid update handling and avoids duplicating fragile check/update code paths.
707
+
677
708
### Async Loading for Expensive Operations
678
709
679
710
Operations like listing Docker containers or checking update status can take several seconds. If you run these synchronously during page load, the user sees a blank or frozen page. Instead, render the page shell immediately with a placeholder, then fetch expensive data via AJAX.
0 commit comments