editor: canvas - stop using thrown away nodeMoved event, use 'move' flag instead
[fnpeditor.git] / src / editor / modules / nodePane / template.html
1 <div class="rng-module-nodePane">
2     <fieldset>
3         <legend><%= gettext('Current node') %></legend>
4         <div>
5             <label>Tag</label>
6             <select class="rng-module-nodePane-tagSelect">
7                 <% var options = ['', 'section', 'header', 'div', 'span', 'aside']; %>
8                 <% options.forEach(function(option) { %>
9                     <option value="<%= option %>" <% if(option === '') { %>selected<% } %>><%= utils.getTagLabel(option) %></option>
10                 <% }); %>
11             </select>
12         </div>
13         <div>
14             <label>Klasa</label>
15             <select  class="rng-module-nodePane-classSelect">
16                 <% var options = ['', 'author', 'title', 'comment', 'cite', 'cite.code', 'cite.code.xml', 'list.items', 'list.items.enum', 'item', 'link', 'p', 'footnote', 'todo', 'emp', 'gap'] %>
17                 <% options.forEach(function(option) { %>
18                     <option value="<%= option.replace(/\./g, '-') %>" <% if(option === '') { %>selected<% } %>><%= utils.getClassLabel(option) %></option>
19                 <% }); %>
20             </select>
21         </div>
22         <div class="metaFields">
23         </div>
24     </fieldset>
25 </div>