+ var myHandlers = {
+ templatesBtn: function() {
+ if(currentNode && currentNode.nodeType === Node.ELEMENT_NODE) {
+ var templateId = parseInt(view.node.find('[data-name=templates-select]').val(), 10);
+ documentTemplates.forEach(function(template) {
+ if(template.id === templateId) {
+ var toAdd = currentNode.document.createDocumentNode(template.content);
+ currentNode.after(toAdd);
+ }
+ });
+ }
+ }
+ };
+