+ var htmlView = $('#html-view');
+ htmlView.html(element);
+ htmlView.find('*[x-node]').dblclick(function(e) {
+ if($(e.target).is('textarea'))
+ return;
+ var selection = window.getSelection();
+ selection.collapseToStart();
+ selection.modify('extend', 'forward', 'word');
+ e.stopPropagation();
+ });