Revision 6706,
1.2 KB
checked in by marcosw, 11 years ago
(diff) |
Ticket #2934 - Insersão de tooltip em botões de marcadores
|
-
Property svn:executable set to
*
|
Line | |
---|
1 | <ul class="label-list"> |
---|
2 | <%for (var i=0; i<data.labels.length; i++){ %> |
---|
3 | |
---|
4 | <li class="label-item label-item-<%= (data.labels[i].id) ? data.labels[i].id : ''%>" style=" |
---|
5 | background: <%= (data.labels[i].backgroundColor) ? data.labels[i].backgroundColor : '#ebebeb' %>; |
---|
6 | color: <%= (data.labels[i].fontColor) ? data.labels[i].fontColor : '#000000' %>; |
---|
7 | border-color: <%= (data.labels[i].borderColor) ? data.labels[i].borderColor : '#000000' %>;"> |
---|
8 | |
---|
9 | <span class="text-list"><%= (data.labels[i].name) ? data.labels[i].name : '' %></span> |
---|
10 | <!--<input type="hidden" value="<%= (data.labels[i].id) ? data.labels[i].id : ''%>" name="labelItemId" class="id-item-list" />--> |
---|
11 | <input type="hidden" value="<%= data.labels[i].id%>" name="labelItemId" class="id-item-list" /> |
---|
12 | |
---|
13 | <div class="square-color" style="display: none; width:17px;height:12px;margin-top:1px;-moz-border-radius:3px;-webkit-border-radius:3px; |
---|
14 | background: <%= (data.labels[i].backgroundColor) ? data.labels[i].backgroundColor : '#ffffff' %>; float:right;"></div> |
---|
15 | |
---|
16 | <div class="button close tiny" style="float: right" title="<%= get_lang("Delete")%>"></div> |
---|
17 | <div class="button edit tiny" style="float: right" title="<%= get_lang("Edit")%>"></div> |
---|
18 | </li> |
---|
19 | <%}%> |
---|
20 | </ul> |
---|
21 | |
---|
Note: See
TracBrowser
for help on using the repository browser.