mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-06 03:29:44 -06:00
* Organize properties in one single property tree * Update scenes to work with one property tree. Fix documentation issues.
5 lines
134 B
JavaScript
5 lines
134 B
JavaScript
function parseJson(elementId) {
|
|
var jsonElement = document.getElementById(elementId);
|
|
return JSON.parse(jsonElement.innerHTML);
|
|
}
|