Commit ab28cb89 by Matjaz Gregoric

Replace <i> tags with <span>s.

The i tag is for italic and should not be used for icons.
parent 9f80dab7
......@@ -8,7 +8,7 @@ function DragAndDropTemplates(configuration) {
}
return (
h("div.spinner-wrapper", {key: item.value + '-spinner'}, [
h("i.fa.fa-spin.fa-spinner")
h("span.fa.fa-spin.fa-spinner")
])
);
};
......
{% load i18n %}
<div class="themed-xblock xblock--drag-and-drop">
<i class="fa fa-spin fa-spinner initial-load-spinner"></i>{% trans "Loading drag and drop problem." %}
<span class="fa fa-spin fa-spinner initial-load-spinner"></span>{% trans "Loading drag and drop problem." %}
</div>
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