2014-09-15 5 views

답변

1

이 문서에는 잘 설명되어 있지 않지만 사용할 수있는 enabledisable 함수 호출이 있습니다. 이 편리 경우

var quill = new Quill('#editor'); 
var authorship = quill.addModule('authorship'); 
authorship.disable(); 

enable(false)disable()과 동일합니다.

+0

감사합니다. – nearpoint