💥 ModuleRef and ThemeRef replace *StaticRef

This commit is contained in:
Manuel Cillero 2023-07-21 18:34:26 +02:00
parent 05304f116a
commit 09ac316cb5
17 changed files with 38 additions and 39 deletions

View file

@ -14,11 +14,11 @@ impl ModuleTrait for Bootsier {
THEME_BOOTSIER
}
fn theme(&self) -> Option<ThemeStaticRef> {
fn theme(&self) -> Option<ThemeRef> {
Some(&Bootsier)
}
fn dependencies(&self) -> Vec<ModuleStaticRef> {
fn dependencies(&self) -> Vec<ModuleRef> {
vec![&pagetop_jquery::JQuery]
}