Skip to content

Commit fe68d5a

Browse files
authored
Merge pull request #119 from vadykoo/master
Update CKEDITOR free version in form.blade.php
2 parents eabddf3 + 613a18e commit fe68d5a

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/Views/binshopsblog_admin/posts/form.blade.php

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -257,11 +257,13 @@ function populate_slug_field() {
257257
</script>
258258

259259
@if( config("binshopsblog.use_wysiwyg") && config("binshopsblog.echo_html"))
260-
<script src="//cdn.ckeditor.com/4.24.0-lts/full/ckeditor.js"></script>
260+
<script src="//cdn.ckeditor.com/4.22.1/full/ckeditor.js"></script>
261261

262262
<script>
263-
if( typeof(CKEDITOR) !== "undefined" ) {
264-
CKEDITOR.replace('post_body');
263+
if (typeof(CKEDITOR) !== "undefined") {
264+
CKEDITOR.replace('post_body', {
265+
versionCheck: false
266+
});
265267
}
266268
</script>
267269
@endif

0 commit comments

Comments
 (0)