Outerra forum

Please login or register.

Login with username, password and session length
Advanced search  

News:

Outerra Tech Demo download. Help with graphics driver issues

Author Topic: Outerra UI  (Read 3804 times)

SteelRat

  • Sr. Member
  • ****
  • Posts: 380
  • newbie
Outerra UI
« on: April 19, 2015, 01:20:01 pm »

Hi cameni !

Code: [Select]
<!DOCTYPE html>
<html>
<head>
<title>Desktop sample</title>

<!-- File not loaded  -->
<script type="text/javascript" src="file:///ptm/js/myJavaScript.js"></script>

<!-- File loaded  -->
<script type="text/javascript" src="file:///www/js/myJavaScript.js"></script>

</head>
<body></body>
</html>

This can be circumvented without editing the contents of the folder "www"?
Logged

cameni

  • Brano Kemen
  • Outerra Administrator
  • Hero Member
  • *****
  • Posts: 6721
  • No sense of urgency.
    • outerra.com
Re: Outerra UI
« Reply #1 on: April 20, 2015, 12:39:36 am »

I think absolute paths in script tags are constrained to the www folder at the moment. It's a bit messy; ideally we would want to have UI addons located in data directory, but current Chromium version doesn't allow that.
Logged

SteelRat

  • Sr. Member
  • ****
  • Posts: 380
  • newbie
Re: Outerra UI
« Reply #2 on: April 20, 2015, 08:51:02 am »

Yes, it's my mistake.

If my call in console
Code: [Select]
window.open("../ptm/ui/desktop_console.html")
And call JScript in desktop_console.html
Code: [Select]
<script type="text/javascript" src="../js/myJavaScript.js"></script>File loaded.

Thank cameni !
Logged