You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
podgrab/client/scripts.html

14 lines
350 B

{{define "scripts"}}
<script src="/webassets/vue.js"></script>
<script src="/webassets/axios.min.js" ></script>
<script src="/webassets/vue-toasted.min.js"></script>
<script>
Vue.use(Toasted)
function onImageError(image){
image.onerror = "";
image.src = "/webassets/blank.png";
return true;
}
</script>
{{end}}