diff options
author | Belen Barros Pena <belen.barros.pena@intel.com> | 2014-02-21 13:48:13 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-17 13:59:38 +0000 |
commit | 1caad7d592eac3f8cdb59cea049e03693d389136 (patch) | |
tree | bd2fd44b8e696ca80890d3a5f1712dc3e24d44d8 /bitbake | |
parent | c1f97ce3ab30e3d51ff76cae4a43494382efd87f (diff) | |
download | poky-1caad7d592eac3f8cdb59cea049e03693d389136.tar.gz |
bitbake: toaster: Remove the data-toggle attribute
Help icons with the .get-help class do not need the
data-toggle attribute. That attribute initialises the
Bootstrap tooltips, but they are already initialised
in main.js for any element with the .get-help class.
(Bitbake rev: 886a87de2d36382f40830c0d28fd2f55871d0993)
Signed-off-by: Belen Barros Pena <belen.barros.pena@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/toaster/toastergui/templates/basetable_top.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/basetable_top.html b/bitbake/lib/toaster/toastergui/templates/basetable_top.html index e2549f7d49..9df36472f3 100644 --- a/bitbake/lib/toaster/toastergui/templates/basetable_top.html +++ b/bitbake/lib/toaster/toastergui/templates/basetable_top.html | |||
@@ -75,7 +75,7 @@ | |||
75 | <!-- Table header row; generated from "tablecols" entry in the context dict --> | 75 | <!-- Table header row; generated from "tablecols" entry in the context dict --> |
76 | <tr> | 76 | <tr> |
77 | {% for tc in tablecols %}<th class="{{tc.dclass}} {{tc.clclass}}"> | 77 | {% for tc in tablecols %}<th class="{{tc.dclass}} {{tc.clclass}}"> |
78 | {%if tc.qhelp%}<i class="icon-question-sign get-help" data-toggle="tooltip" title="{{tc.qhelp}}"></i>{%endif%} | 78 | {%if tc.qhelp%}<i class="icon-question-sign get-help" title="{{tc.qhelp}}"></i>{%endif%} |
79 | {%if tc.orderfield%}<a {%if tc.ordericon%} class="sorted" {%endif%}href="javascript:reload_params({'page': 1, 'orderby' : '{{tc.orderfield}}' })" >{{tc.name}}</a>{%else%}<span class="muted">{{tc.name}}</span>{%endif%} | 79 | {%if tc.orderfield%}<a {%if tc.ordericon%} class="sorted" {%endif%}href="javascript:reload_params({'page': 1, 'orderby' : '{{tc.orderfield}}' })" >{{tc.name}}</a>{%else%}<span class="muted">{{tc.name}}</span>{%endif%} |
80 | {%if tc.ordericon%} <i class="icon-caret-{{tc.ordericon}}"></i>{%endif%} | 80 | {%if tc.ordericon%} <i class="icon-caret-{{tc.ordericon}}"></i>{%endif%} |
81 | {%if tc.filter%}<div class="btn-group pull-right"> | 81 | {%if tc.filter%}<div class="btn-group pull-right"> |