+ setup: function() {\r
+ var view = this;\r
+
+ this.node.find('#rng-visualEditor-content').on('keyup', function() {\r
+ isDirty = true;\r
+ });\r
+ \r
+ this.node.find('#rng-visualEditor-meta').on('keyup', function() {\r
+ isDirty = true;\r
+ });\r
+
+ 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
+ view._markSelected($(e.target));\r
+ });\r
+\r
+ this.node.on('keyup', function(e) {\r
+ var anchor = $(window.getSelection().anchorNode);\r
+ if(anchor[0].nodeType === Node.TEXT_NODE)\r
+ anchor = anchor.parent();\r
+ if(!anchor.hasClass('rng'))\r
+ return;\r
+ view._markSelected(anchor);\r
+ });
+ },\r