You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi Tyler,
First I'd like to thank you for your contribution as this is the best editor I've seen. I just purchased Redactor v10.0.6 and installed your latest version with angular 1.3.5. After working with this the past 2 days, I think the following might help others getting started with some of the advanced features.
I've got all my libs loaded (download plugins)
'bower_components/redactor/redactor.js',
'bower_components/redactor/table.js',
'bower_components/redactor/fullscreen.js',
'bower_components/redactor/video.js',
'bower_components/redactor/clips.js',
'bower_components/redactor/imagemanager.js',
'bower_components/angular-redactor/angular-redactor.js',
added to app.js angular.module('sailng', [... ,'angular-redactor']...
added to to app.js
.config(function(redactorOptions) {
redactorOptions.imageUpload = '/upload';
redactorOptions.focus = true;
redactorOptions.enterKey = true;
redactorOptions.linebreaks = true;
redactorOptions.pastePlainText = false;
redactorOptions.buttonSource = true;
redactorOptions.imageResizable = true;
redactorOptions.imageEditable = true;
redactorOptions.imageLink = true;
redactorOptions.visual = true;// flase for html mode
While the upload feature is a bit ticky and requires a good read of documnetation, everything works as expected except
The enterKey does not execute crlf when in a table.
Thanks,
John
The text was updated successfully, but these errors were encountered:
Hi Tyler,
First I'd like to thank you for your contribution as this is the best editor I've seen. I just purchased Redactor v10.0.6 and installed your latest version with angular 1.3.5. After working with this the past 2 days, I think the following might help others getting started with some of the advanced features.
'bower_components/redactor/redactor.js',
'bower_components/redactor/table.js',
'bower_components/redactor/fullscreen.js',
'bower_components/redactor/video.js',
'bower_components/redactor/clips.js',
'bower_components/redactor/imagemanager.js',
'bower_components/angular-redactor/angular-redactor.js',
.config(function(redactorOptions) {
redactorOptions.imageUpload = '/upload';
redactorOptions.focus = true;
redactorOptions.enterKey = true;
redactorOptions.linebreaks = true;
redactorOptions.pastePlainText = false;
redactorOptions.buttonSource = true;
redactorOptions.imageResizable = true;
redactorOptions.imageEditable = true;
redactorOptions.imageLink = true;
redactorOptions.visual = true;// flase for html mode
While the upload feature is a bit ticky and requires a good read of documnetation, everything works as expected except
The enterKey does not execute crlf when in a table.
Thanks,
John
The text was updated successfully, but these errors were encountered: