File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 125125 // the number of characters to type before displaying the autocompleter menu and,
126126 // configure the autocompleter to display a menu opposed a row of icons
127127 // https://www.tiny.cloud/docs/ui-components/autocompleter/#configurationoptions
128- ch : '/' ,
128+ trigger : '/' ,
129129 minChars : 0 ,
130130 columns : 1 ,
131131
157157
158158 // Here the matched autocompleter objects are built
159159 // https://www.tiny.cloud/docs/ui-components/autocompleter/#autocompleteitem
160- return new tinymce . util . Promise ( function ( resolve ) {
160+ return new Promise ( function ( resolve ) {
161161 var results = matchedActions . map ( function ( action ) {
162162 return {
163163 meta : action ,
200200 tinymce . init ( {
201201 selector : "textarea" ,
202202 // Remember to include all relevant plugins here which you included in your `insertActions` array above
203- plugins : "commandpalette insertdatetime lists link code table toc image codesample media checklist" ,
203+ plugins : "commandpalette insertdatetime lists link code table image codesample media checklist" ,
204204 height : 400 ,
205205 } ) ;
206206 </ script >
You can’t perform that action at this time.
0 commit comments