Skip to content

Commit

Permalink
#83 - Update event dialogDefinition
Browse files Browse the repository at this point in the history
  • Loading branch information
dangvanthanh committed Oct 24, 2018
1 parent 8477e7b commit f1cb8cd
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dist/vue-ckeditor2.cjs.js
Expand Up @@ -116,7 +116,7 @@ var script = {
_this.$emit('contentDom', evt);
}); // Ckeditor dialog definition event

this.instance.on('dialogDefinition', function(evt) {
CKEDITOR.on('dialogDefinition', function(evt) {
_this.$emit('dialogDefinition', evt);
}); // Ckeditor file upload request event

Expand Down
2 changes: 1 addition & 1 deletion dist/vue-ckeditor2.es.js
Expand Up @@ -112,7 +112,7 @@ var script = {
_this.$emit('contentDom', evt);
}); // Ckeditor dialog definition event

this.instance.on('dialogDefinition', function(evt) {
CKEDITOR.on('dialogDefinition', function(evt) {
_this.$emit('dialogDefinition', evt);
}); // Ckeditor file upload request event

Expand Down
2 changes: 1 addition & 1 deletion dist/vue-ckeditor2.js
Expand Up @@ -121,7 +121,7 @@
_this.$emit('contentDom', evt);
}); // Ckeditor dialog definition event

this.instance.on('dialogDefinition', function(evt) {
CKEDITOR.on('dialogDefinition', function(evt) {
_this.$emit('dialogDefinition', evt);
}); // Ckeditor file upload request event

Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "vue-ckeditor2",
"version": "2.1.0",
"version": "2.1.1",
"description": "Ckeditor 4 using with Vue.js",
"author": "Dang Van Thanh <dangvanthanh@dangthanh.org>",
"main": "dist/vue-ckeditor2.cjs.js",
Expand Down
2 changes: 1 addition & 1 deletion src/VueCkeditor.vue
Expand Up @@ -111,7 +111,7 @@ export default {
});
// Ckeditor dialog definition event
this.instance.on('dialogDefinition', evt => {
CKEDITOR.on('dialogDefinition', evt => {
this.$emit('dialogDefinition', evt);
});
Expand Down

0 comments on commit f1cb8cd

Please sign in to comment.