Change the url to have the files reachable.

Change the url to have the files reachable.
This commit is contained in:
Alezia Kurdis 2022-02-27 13:36:15 -05:00 committed by GitHub
parent 02ed4b2774
commit 14f80f92ef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 492 additions and 492 deletions

View file

@ -15,7 +15,7 @@
var isActive = false;
var thisEntityID;
var versioncall = Math.floor(Math.random()*50000);
var DopplegangerClass = Script.require('qrc:///serverless/Scripts/doppleganger.js?version=' + versioncall);
var DopplegangerClass = Script.require('file:///~/serverless/Scripts/doppleganger.js?version=' + versioncall);
var doppleganger = new DopplegangerClass({
avatar: MyAvatar,

View file

@ -17,28 +17,28 @@
<style>
@font-face {
font-family: 'Roboto'
src: url('qrc:///serverless/Fonts/Roboto-Regular.ttf') format('truetype')
src: url('file:///~/serverless/Fonts/Roboto-Regular.ttf') format('truetype')
font-weight: normal
font-style: normal
}
@font-face {
font-family: 'Roboto'
src: url('qrc:///serverless/Fonts/Roboto-Bold.ttf') format('truetype')
src: url('file:///~/serverless/Fonts/Roboto-Bold.ttf') format('truetype')
font-weight: bold
font-style: normal
}
@font-face {
font-family: 'Roboto';
src: url('qrc:///serverless/Fonts/Roboto-Italic.ttf');
src: url('file:///~/serverless/Fonts/Roboto-Italic.ttf');
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: 'Roboto';
src: url('qrc:///serverless/Fonts/Roboto-BoldItalic.ttf');
src: url('file:///~/serverless/Fonts/Roboto-BoldItalic.ttf');
font-weight: bold;
font-style: italic;
}

View file

@ -13,7 +13,7 @@
//
(function() {
var CONFIG_WIZARD_URL = "qrc:///serverless/Scripts/wizard.html?v=" + Math.floor(Math.random() * 65000);
var CONFIG_WIZARD_URL = "file:///~/serverless/Scripts/wizard.html?v=" + Math.floor(Math.random() * 65000);
var loaderEntityID;
var configWizardEntityID;