Skip to content
This repository has been archived by the owner on Aug 3, 2022. It is now read-only.

Commit

Permalink
[#1061] Change popover to tooltip, only showing title
Browse files Browse the repository at this point in the history
  • Loading branch information
brew committed Apr 27, 2017
1 parent 9db6f48 commit 61f11f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion census/views/includes/dataviews/table_slice_dataset.html
Expand Up @@ -56,7 +56,7 @@
{% set answer = entry.getAnswerValueForQuestion(question) %}
{% set pass = 'yes' if question.pass(answer) else 'no' %}
{% endif %}
<li class="{{ pass }}" title="{{ question.questionshort }}" data-toggle="popover" data-content="{{ popovers.popover_slice_content(question.description)|escape }}"><i class="fa fa-{{ question.icon }}"></i>&nbsp;</li>
<li class="{{ pass }}" title="{{ question.questionshort }}" data-toggle="tooltip"><i class="fa fa-{{ question.icon }}"></i>&nbsp;</li>
{% endfor %}
</ul>
</td>
Expand Down
2 changes: 1 addition & 1 deletion census/views/includes/dataviews/table_slice_place.html
Expand Up @@ -61,7 +61,7 @@
{% set answer = entry.getAnswerValueForQuestion(question) %}
{% set pass = 'yes' if question.pass(answer) else 'no' %}
{% endif %}
<li class="{{ pass }}" title="{{ question.questionshort }}" data-toggle="popover" data-content="{{ popovers.popover_slice_content(question.description)|escape }}"><i class="fa fa-{{ question.icon }}"></i>&nbsp;</li>
<li class="{{ pass }}" title="{{ question.questionshort }}" data-toggle="tooltip"><i class="fa fa-{{ question.icon }}"></i>&nbsp;</li>
{% endfor %}
</ul>
</td>
Expand Down

0 comments on commit 61f11f2

Please sign in to comment.