diff --git a/script/engine.js b/script/engine.js index f2f7bc4..957556b 100644 --- a/script/engine.js +++ b/script/engine.js @@ -313,6 +313,7 @@ } } }); + Engine.autoSelect('#description textarea') }, import64: function(string64) { @@ -627,6 +628,10 @@ document.onmousedown = eventPassthrough; }, + autoSelect: function(selector) { + $(selector).focus().select(); + }, + handleStateUpdates: function(e){ },