Stefan Walther
Stefan Walther
Any solution you can share, @CR34L ?
I found out in the meanwhile that when forking this repo, hiding buttons works in reactive-forms without any problems. But if you dynamically create forms (Dynamic Forms: https://angular.io/guide/dynamic-form), then hiding...
@ghiscoding Sure, if I find the issue ;-) ... working on it ...
Weird thing is that even this does not work: ```javascript this.editorOptions = { autofocus: false, hiddenButtons: [], onShow: (e: EditorInstance) => { // @ts-ignore e.hideButtons(['cmdBold']); } }; ``` And `e.hideButtons`...
The best workaround I have found so far is the following: ```html ``` ```css .angular-markdown-editor-minimalistic { // See here: https://css-tricks.com/almanac/selectors/a/attribute/ ::ng-deep [data-handler$="cmdBold"] { display: none; } } ``` --- Using...
In addition to this question, I am also very interested in conditionally creating files ... ;-)
Now added some other stuff, orientation can now be changed on the fly.
Hi, I assume the right place to fix this would be `.\lib\transforms\init\load.js`, right? I don't see any code there which would load the setting from the data-store ... Am I...