Skip to content

Commit fe8f122

Browse files
author
Bert Oost
committed
Fixed bug loading Craft integrations when Enabled Plugins setting is set to something else than "All".
1 parent 696f0ca commit fe8f122

3 files changed

Lines changed: 10 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Craft CMS 3 - Froala WYSIWYG Editor Changelog
22

3+
## v2.8.4.2 - 2018-07-19
4+
5+
### Changed
6+
7+
- Fixed bug loading Craft integrations when Enabled Plugins setting is set to something else than "All".
8+
39
## v2.8.4.1 - 2018-07-18
410

511
### Changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "froala/craft-froala-wysiwyg",
33
"description": "Craft 3 CMS plugin for Froala WYSIWYG HTML Rich Text Editor.",
44
"type": "craft-plugin",
5-
"version": "2.8.4.1",
5+
"version": "2.8.4.2",
66
"keywords": [
77
"craft",
88
"craftcms",

src/assets/field/dist/js/FroalaEditorConfig.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,9 @@
6969
list.push(camelCase(enabledPlugins[i]));
7070
}
7171

72+
// always add our own craft plugin extension
73+
list.push('craft');
74+
7275
this.config.pluginsEnabled = list;
7376
}
7477
},

0 commit comments

Comments
 (0)