overtype 2.3.8 → 2.3.9
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/overtype-webcomponent.esm.js +1 -1
- package/dist/overtype-webcomponent.esm.js.map +1 -1
- package/dist/overtype-webcomponent.js +1 -1
- package/dist/overtype-webcomponent.js.map +1 -1
- package/dist/overtype-webcomponent.min.js +1 -1
- package/dist/overtype.cjs +1 -1
- package/dist/overtype.cjs.map +1 -1
- package/dist/overtype.esm.js +1 -1
- package/dist/overtype.esm.js.map +1 -1
- package/dist/overtype.js +2 -1
- package/dist/overtype.js.map +1 -1
- package/dist/overtype.min.js +2 -1
- package/package.json +1 -1
- package/src/overtype.js +0 -1
package/dist/overtype.min.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* OverType v2.3.
|
|
2
|
+
* OverType v2.3.9
|
|
3
3
|
* A lightweight markdown editor library with perfect WYSIWYG alignment
|
|
4
4
|
* @license MIT
|
|
5
5
|
* @author David Miranda
|
|
@@ -98,6 +98,7 @@ if (typeof window !== "undefined" && typeof window.document !== "undefined") {
|
|
|
98
98
|
// Extract exports BEFORE reassigning OverType (var OverType is window.OverType)
|
|
99
99
|
window.toolbarButtons = OverType.toolbarButtons;
|
|
100
100
|
window.defaultToolbarButtons = OverType.defaultToolbarButtons;
|
|
101
|
+
window.markdownActions = OverType.markdownActions;
|
|
101
102
|
window.OverType = OverType.default ? OverType.default : OverType;
|
|
102
103
|
}
|
|
103
104
|
|
package/package.json
CHANGED
package/src/overtype.js
CHANGED