nhn / tui.image-editor

🍞🎨 Full-featured photo image editor using canvas. It is really easy, and it comes with great filters.
http://ui.toast.com/tui-image-editor
MIT License
6.94k stars 1.28k forks source link

기존에 Text입력 모드가 removeActiveObject() 호출 후 초기화 됩니다. #8

Closed kim-jeongki closed 7 years ago

seonim-ryu commented 7 years ago

removeActiveObject() 호출 시 removeObject 이벤트가 발생하며, 이 부분에서 Text 입력 모드를 활성화 시켜주시면 됩니다.

imageEditor.on({
    ...
    removeObject: function(obj) {
        console.log(obj); // 현재 삭제된 오브젝트 객체
    }
    ...
});