Browse Source
Fix identicons not always working
Fixes #2570
Reverted the `defer` option for these scripts, seems to cause some
issues in some situations.
pull/2571/head
BlackDex
3 years ago
No known key found for this signature in database
GPG Key ID: 58C80A2AA6C765E1
1 changed files with
2 additions and
2 deletions
-
src/static/templates/admin/base.hbs
|
@ -28,7 +28,7 @@ |
|
|
border: var(--bs-alert-border); |
|
|
border: var(--bs-alert-border); |
|
|
} |
|
|
} |
|
|
</style> |
|
|
</style> |
|
|
<script defer="defer" src="{{urlpath}}/vw_static/identicon.js"></script> |
|
|
<script src="{{urlpath}}/vw_static/identicon.js"></script> |
|
|
<script> |
|
|
<script> |
|
|
'use strict'; |
|
|
'use strict'; |
|
|
|
|
|
|
|
@ -142,6 +142,6 @@ |
|
|
} |
|
|
} |
|
|
})(); |
|
|
})(); |
|
|
</script> |
|
|
</script> |
|
|
<script defer="defer" src="{{urlpath}}/vw_static/bootstrap-native.js"></script> |
|
|
<script src="{{urlpath}}/vw_static/bootstrap-native.js"></script> |
|
|
</body> |
|
|
</body> |
|
|
</html> |
|
|
</html> |
|
|