@wiris/mathtype-ckeditor5 8.15.2 → 8.15.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser/index.js +1697 -347
- package/dist/browser/index.js.map +1 -1
- package/dist/browser/index.umd.js +1697 -347
- package/dist/browser/index.umd.js.map +1 -1
- package/dist/index.js +2 -6
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/plugin.js +1 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wiris/mathtype-ckeditor5",
|
|
3
|
-
"version": "8.15.
|
|
3
|
+
"version": "8.15.3",
|
|
4
4
|
"description": "MathType Web for CKEditor5 editor",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"chem",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"prepare": "npm run build:dist"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@wiris/mathtype-html-integration-devkit": "1.17.
|
|
51
|
+
"@wiris/mathtype-html-integration-devkit": "1.17.16"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"@ckeditor/ckeditor5-dev-build-tools": "^42.1.0"
|
package/src/plugin.js
CHANGED
|
@@ -446,9 +446,7 @@ export default class MathType extends Plugin {
|
|
|
446
446
|
* DataProcessor being used by this editor instance
|
|
447
447
|
*/
|
|
448
448
|
if (imgElement) {
|
|
449
|
-
return viewWriter.createEmptyElement("img", imgElement.getAttributes()
|
|
450
|
-
renderUnsafeAttributes: ["src"],
|
|
451
|
-
});
|
|
449
|
+
return viewWriter.createEmptyElement("img", imgElement.getAttributes());
|
|
452
450
|
}
|
|
453
451
|
|
|
454
452
|
return null;
|