mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 12:28:02 +02:00
Change the url to have the files reachable.
Change the url to have the files reachable.
This commit is contained in:
parent
02ed4b2774
commit
14f80f92ef
3 changed files with 492 additions and 492 deletions
|
@ -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,
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue