원리는 아주 간단하다.그냥 텍스트를 보여주다가, 더블 클릭을 하면 input의 value에 텍스트를 넣어주면 끗.Deps.flush()가 중요하다. 변경된 DOM을 강제로 다시 그려서 input 필드를 자동으로 focus() 가능하게 해준다. 이후, focusout 이벤트를 받아서 다시 그냥 텍스트로 보여주게 한다. sample.html sample {{> hello}} Hello World! {{#if editing}} {{else}} {{greeting}} {{/if}} sample.jsif (Meteor.isClient) { Session.setDefault('key', null); Template.hello.greeting = function () { return "Welcome to sample..