diff --git a/app_only.html b/app_only.html
index 9ea73fd..6392c0e 100644
--- a/app_only.html
+++ b/app_only.html
@@ -863,6 +863,13 @@
questionContainer.appendChild(buttonContainer);
+ if ('contacts' in question) {
+ Object.keys(question.contacts).forEach(function(key) {
+ var contact = question.contacts[key];
+ renderContact(contact.name, contact.title, contact.tel, contact.mail, contact.web, contact.address);
+ });
+ }
+
if ("description" in question) {
var descriptionDiv = document.createElement('div');
descriptionDiv.classList.add('descriptionContainer');
@@ -871,15 +878,8 @@
};
feather.replace();
-
questionContainer.classList.add('show');
- if ('contacts' in question) {
- Object.keys(question.contacts).forEach(function(key) {
- var contact = question.contacts[key];
- renderContact(contact.name, contact.title, contact.tel, contact.mail, contact.web, contact.address);
- });
- }
}, 500);
}