fnp
/
fnpeditor.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fix: changes to meta attribute were being lost
[fnpeditor.git]
/
modules
/
nodeBreadCrumbs
/
template.html
diff --git
a/modules/nodeBreadCrumbs/template.html
b/modules/nodeBreadCrumbs/template.html
index
1662fcf
..
6c46613
100644
(file)
--- a/
modules/nodeBreadCrumbs/template.html
+++ b/
modules/nodeBreadCrumbs/template.html
@@
-2,9
+2,9
@@
<ul class="breadcrumb">
<% if(node && parents) { %>
<% for(var i = parents.length - 1; i >= 0; i--) { %>
<ul class="breadcrumb">
<% if(node && parents) { %>
<% for(var i = parents.length - 1; i >= 0; i--) { %>
- <li><a href="#"
data-id="<%= parents[i].getAttribute('id') %>"> <%= parents[i].getAttribute('wlxml-tag') %><% if(parents[i].getAttribute('wlxml-class')) { %>.<%= parents[i].getAttribute('wlxml-class'
) %> <% } %></a><span class="divider">/</span></li>
+ <li><a href="#"
> <%= parents[i].getWlxmlTag() %><% if(parents[i].getWlxmlClass()) { %>.<%= parents[i].getWlxmlClass(
) %> <% } %></a><span class="divider">/</span></li>
<% } %>
<% } %>
- <li class="active"><
span data-id="<%= node.attr('id') %>"><%= node.attr('wlxml-tag') %><% if(node.attr('wlxml-class')) { %>.<%= node.attr('wlxml-class'
) %> <% } %></span></li>
+ <li class="active"><
%= node.getWlxmlTag() %><% if(node.getWlxmlClass()) { %>.<%= node.getWlxmlClass(
) %> <% } %></span></li>
<% } %>
</ul>
</div>
\ No newline at end of file
<% } %>
</ul>
</div>
\ No newline at end of file