Commit 03081ccc authored by Romain Courteaud's avatar Romain Courteaud

erp5_run_my_doc: open the details by default

This allow to see the content when being displayed as a web page content
parent b174bde5
...@@ -180,7 +180,8 @@ ...@@ -180,7 +180,8 @@
slide.innerHTML = '<h1>' + slide_dict.title_html + '</h1>' + slide.innerHTML = '<h1>' + slide_dict.title_html + '</h1>' +
img + img +
slide_dict.slide_html + slide_dict.slide_html +
'<details>' + slide_dict.comment_html + '</details>'; '<details open="true">' +
slide_dict.comment_html + '</details>';
return slideListAsHTML(slide_list); return slideListAsHTML(slide_list);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment