Skip to content
This repository was archived by the owner on Apr 6, 2020. It is now read-only.

Commit b349351

Browse files
author
Sohee Lee
committed
Merge branch 'master' into production
2 parents 4f5a3fd + cdbb3bb commit b349351

File tree

5 files changed

+3
-8
lines changed

5 files changed

+3
-8
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@toast-ui/vue-editor",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"description": "TOAST UI Editor for Vue",
55
"main": "dist/toastui-vue-editor.js",
66
"files": [

src/Viewer.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ export default {
4141
4242
this.editor = Editor.factory({
4343
el: this.$refs.tuiEditorViewer,
44+
exts: this.exts,
4445
events: eventOption,
4546
initialValue: this.value,
4647
height: this.height,

stories/editor.stories.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11

2-
import Vue from 'vue';
32
import {storiesOf} from '@storybook/vue';
43
import {withKnobs} from '@storybook/addon-knobs';
54
import {action} from '@storybook/addon-actions';

stories/viewer.stories.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11

2-
import Vue from 'vue';
32
import {storiesOf} from '@storybook/vue';
43
import {html} from 'common-tags';
54
import * as dummy from './dummyData';
@@ -9,7 +8,6 @@ import 'highlight.js/styles/github.css';
98
import 'tui-editor/dist/tui-editor.min.css';
109
import 'tui-editor/dist/tui-editor-contents.min.css';
1110

12-
import 'tui-editor/dist/tui-editor-extScrollSync';
1311
import 'tui-editor/dist/tui-editor-extColorSyntax';
1412
import 'tui-editor/dist/tui-editor-extUML';
1513
import 'tui-editor/dist/tui-editor-extChart';
@@ -35,7 +33,6 @@ stories.add('demo', () => ({
3533
minHeight: 100,
3634
maxHeight: 300
3735
},
38-
'scrollSync',
3936
'colorSyntax',
4037
'uml',
4138
'mark',
@@ -65,7 +62,6 @@ stories.add('change value prop', () => ({
6562
minHeight: 100,
6663
maxHeight: 300
6764
},
68-
'scrollSync',
6965
'colorSyntax',
7066
'uml',
7167
'mark',
@@ -100,7 +96,6 @@ stories.add('invoke method', () => ({
10096
minHeight: 100,
10197
maxHeight: 300
10298
},
103-
'scrollSync',
10499
'colorSyntax',
105100
'uml',
106101
'mark',

0 commit comments

Comments
 (0)