Open diegonc opened 8 years ago
Using summernote one can disable any input to an editor by executing the disable method like below.
disable
$(".editor").summernote("disable")
Which also makes the editor look grey and all toolbar buttons are disabled.
I tried to do the same in materialnote but it does nothing.
> $(".editor").materialnote("disable") undefined
Using disable as a function (just like code) doesn't work either.
code
> $(".editor").disable() VM1931:1 Uncaught TypeError: $(...).disable is not a function(…)
Using summernote one can disable any input to an editor by executing the
disable
method like below.Which also makes the editor look grey and all toolbar buttons are disabled.
I tried to do the same in materialnote but it does nothing.
Using
disable
as a function (just likecode
) doesn't work either.