1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/strut_ynh.git synced 2024-09-03 20:26:33 +02:00
strut_ynh/sources/preview_export/scripts/loadPresentation.js

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;
}
};