-
Notifications
You must be signed in to change notification settings - Fork 143
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ckeditor doesnt work anymore #31
Comments
Could you provide relevant console errors? |
You could be having an existing app.js included in the app.blade.php. (Guessing you're following the same tutorial, you would have to remove the existing app.js and include JS script from existing CDN for the bootstrap to work.) |
I am running into the same issue. I tried commenting out app.js to no avail in my app.blade.php file. |
Thats worked for me. Remove calling script. Just dont use it if it is in app.js I haven't app.js. Instead of that i have main.js There i found that: var allEditors = document.querySelectorAll('.ckeditor'); In my blade file i added class "editor" <textarea id="tull_text" name="full_text" class="form-control ckeditor"> |
Hi Guys
I have used ckeditor within laravel using instructions you provided and everything was fine but today it doesnt work any more.
my code is like following:
in app.blade.app:
<script src="/vendor/unisharp/laravel-ckeditor/ckeditor.js"></script>
<script>
CKEDITOR.replace( 'article-ckeditor' );
</script>
and in create.balde.php:
{{Form::label('body','Body')}}
{{Form::textarea('body', '', ['id'=>'article-ckeditor', 'class'=>'form-control', 'placeholder'=>'Type body here...'])}}
Please help me.
Thank in advance...
The text was updated successfully, but these errors were encountered: