Commit 90215888 authored by Artem Serga's avatar Artem Serga

#7 - Refine column's tooltip presentation

parent 3820ae87
...@@ -123,7 +123,7 @@ ...@@ -123,7 +123,7 @@
{% else %} {% else %}
{{ name }} {{ name }}
{% endif %} {% endif %}
{% if c in admin_view.column_descriptions %} {% if admin_view.column_descriptions.get(c) %}
<a class="icon-question-sign" <a class="icon-question-sign"
title="{{ admin_view.column_descriptions[c] }}" title="{{ admin_view.column_descriptions[c] }}"
href="#" data-role="tooltip" href="#" data-role="tooltip"
...@@ -183,7 +183,10 @@ ...@@ -183,7 +183,10 @@
<script language="javascript"> <script language="javascript">
(function($) { (function($) {
$('[data-role=tooltip]').tooltip(); $('[data-role=tooltip]').tooltip({
html: true,
placement: 'bottom'
});
{% if filter_groups is not none and filter_data is not none %} {% if filter_groups is not none and filter_data is not none %}
var filter = new AdminFilters( var filter = new AdminFilters(
'#filter_form', '.field-filters', '#filter_form', '.field-filters',
......
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