mirror of
https://github.com/YunoHost-Apps/strut_ynh.git
synced 2024-09-03 20:26:33 +02:00
9 lines
310 B
JavaScript
9 lines
310 B
JavaScript
var loadPresentation = function() {
|
|
var presentation = localStorage.getItem('preview-string');
|
|
var config = JSON.parse(localStorage.getItem('preview-config'));
|
|
|
|
if (presentation) {
|
|
document.body.innerHTML = presentation;
|
|
// document.body.className = config.surface + " " + document.body.className;
|
|
}
|
|
};
|