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/showPreview.js

16 lines
No EOL
419 B
JavaScript

/*if (window.location.href.indexOf("preview=") != -1) {
$(function() {
var idx = window.location.href.indexOf("=");
var end = window.location.href.indexOf("&");
if (end == -1)
end = window.location.href.length;
var presentation = window.location.href.substring(idx+1, end);
$("body").html(decodeURIComponent(presentation));
});
}*/
$(function() {
startImpress(document, window);
impress().init();
});