- this.node.on('mouseover', '.rng', function(e) { $(e.target).addClass('rng-hover')});\r
- this.node.on('mouseout', '.rng', function(e) { $(e.target).removeClass('rng-hover')});\r
- this.node.on('click', '.rng', function(e) {\r
- node.find('.rng').removeClass('rng-current');\r
- $(e.target).addClass('rng-current');\r
- });
+ this.node.on('mouseover', '[wlxml-tag]', function(e) { $(e.target).addClass('rng-hover')});\r
+ this.node.on('mouseout', '[wlxml-tag]', function(e) { $(e.target).removeClass('rng-hover')});\r
+ this.node.on('click', '[wlxml-tag]', function(e) {\r
+ console.log('clicked node type: '+e.target.nodeType);\r
+ view._markSelected($(e.target));\r
+ });\r
+\r
+ this.node.on('keyup', '#rng-visualEditor-contentWrapper', function(e) {\r
+ var anchor = $(window.getSelection().anchorNode);\r
+ if(anchor[0].nodeType === Node.TEXT_NODE)\r
+ anchor = anchor.parent();\r
+ if(!anchor.is('[wlxml-tag]'))\r
+ return;\r
+ view._markSelected(anchor);\r
+ });\r
+ \r
+ \r
+ var metaTable = this.metaTable = this.node.find('#rng-visualEditor-meta table');\r
+ \r
+ this.node.find('.rng-visualEditor-metaAddBtn').click(function() {\r
+ var newRow = view._addMetaRow('', '');\r
+ $(newRow.find('td div')[0]).focus();\r
+ isDirty = true;\r
+ });\r
+ \r
+ this.metaTable.on('click', '.rng-visualEditor-metaRemoveBtn', function(e) {\r
+ $(e.target).closest('tr').remove();\r
+ isDirty = true;\r
+ });\r
+ \r
+ this.metaTable.on('keydown', '[contenteditable]', function(e) {\r
+ console.log(e.which);\r
+ if(e.which === 13) { \r
+ if($(document.activeElement).hasClass('rng-visualEditor-metaItemKey')) {\r
+ metaTable.find('.rng-visualEditor-metaItemValue').focus();\r
+ } else {\r
+ var input = $('<input>');\r
+ input.appendTo('body').focus()\r
+ view.node.find('.rng-visualEditor-metaAddBtn').focus();\r
+ input.remove();\r
+ }\r
+ e.preventDefault();\r
+ }\r
+ \r
+ });\r
+