add missing protocol (to ensure http - or more likely - https://)

This commit is contained in:
Robert Habermann 2020-08-02 20:01:07 +02:00
parent c17ac32c86
commit 1e36a8a393

View File

@ -68,12 +68,12 @@
mixins: [windowMixin], mixins: [windowMixin],
data: function () { data: function () {
return { return {
theurl: location.host, theurl: location.protocol + '//' + location.host,
printDialog: { printDialog: {
show: true, show: true,
data: null data: null
} }
} };
} }
}) })
</script> </script>