Files
OpenSpace/data/web/common/base.js
Emil Axelsson 4675554471 One Property Tree (#500)
* Organize properties in one single property tree
* Update scenes to work with one property tree. Fix documentation issues.
2018-03-06 16:59:06 +01:00

5 lines
134 B
JavaScript

function parseJson(elementId) {
var jsonElement = document.getElementById(elementId);
return JSON.parse(jsonElement.innerHTML);
}