|
@@ -608,7 +608,7 @@ https://github.com/Bernardo-Castilho/dragdroptouch -->
|
|
|
|
|
|
<div id="module-input"
|
|
|
ondrop="drop(event)" ondragover="allowDrop(event)">
|
|
|
- <span class="prompt" id="drag-directions">Browse modules with the tool button and drag them here.</span>
|
|
|
+ <span class="prompt" id="drag-directions">Browse modules from below and drag them here.</span>
|
|
|
</div>
|
|
|
|
|
|
<div id="builder-field">
|
|
@@ -635,19 +635,11 @@ https://github.com/Bernardo-Castilho/dragdroptouch -->
|
|
|
{% if module.type != last_type %}
|
|
|
{% if last_type != "" %}</div>{% endif %}
|
|
|
<div class="module-type-header">
|
|
|
- <img
|
|
|
- {% if module.type == "structure" %}
|
|
|
- src="{% link assets/tabler_icons/building.svg %}" {% endif %}
|
|
|
- {% if module.type == "process" %}
|
|
|
- src="{% link assets/tabler_icons/rotate.svg %}" {% endif %}
|
|
|
- {% if module.type == "decision" %}
|
|
|
- src="{% link assets/tabler_icons/thumb-up.svg %}" {% endif %}
|
|
|
- {% if module.type == "culture" %}
|
|
|
- src="{% link assets/tabler_icons/palette.svg %}" {% endif %}
|
|
|
- />
|
|
|
+ <img src="{{ site.baseurl }}/{{ site.data.module_types[module.type].icon }}" />
|
|
|
{{ module.type }}
|
|
|
<button onclick="toggleVisible('module-type-{{ module.type }}')" class="button chevrons"><img src="{% link assets/tabler_icons/chevrons-down.svg %}" title="Show/hide" /></button>
|
|
|
</div>
|
|
|
+ <div class="module-questions">{{ site.data.module_types[module.type].question }}</div>
|
|
|
<div id="module-type-{{ module.type }}">
|
|
|
{% endif %}
|
|
|
{% assign last_type = module.type %}
|