vue-contenteditable
Advanced tools
Comparing version 1.0.0 to 1.0.1
@@ -127,3 +127,3 @@ (function(){ if(typeof document !== 'undefined'){ var head=document.head||document.getElementsByTagName('head')[0], style=document.createElement('style'), css=" /*# sourceMappingURL=contenteditable.vue.map */"; style.type='text/css'; if (style.styleSheet){ style.styleSheet.cssText = css; } else { style.appendChild(document.createTextNode(css)); } head.appendChild(style); } })(); | ||
if(newval != this.current_content()){ | ||
changeVal(newval); | ||
this.update_content(newval); | ||
} | ||
@@ -130,0 +130,0 @@ } |
@@ -130,3 +130,3 @@ var contenteditable = (function (exports) { | ||
if(newval != this.current_content()){ | ||
changeVal(newval); | ||
this.update_content(newval); | ||
} | ||
@@ -133,0 +133,0 @@ } |
@@ -133,3 +133,3 @@ (function (global, factory) { | ||
if(newval != this.current_content()){ | ||
changeVal(newval); | ||
this.update_content(newval); | ||
} | ||
@@ -136,0 +136,0 @@ } |
{ | ||
"name": "vue-contenteditable", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "Vue.js plugin providing a <contenteditable/> element supporting v-model. It also provides some (optional) features, like preventing html input / paste or new lines.", | ||
@@ -10,10 +10,10 @@ "keywords": [ | ||
], | ||
"homepage" : "https://github.com/hl037/vue-contenteditable", | ||
"bugs" : "https://github.com/hl037/vue-contenteditable/issues", | ||
"license" : "MIT", | ||
"author": { "name" : "Léo Flaventin Hauchecorne" | ||
, "email" : "hl037.prog@gmail.com" | ||
, "url" : "http://leo-flaventin.com" | ||
"homepage": "https://github.com/hl037/vue-contenteditable", | ||
"bugs": "https://github.com/hl037/vue-contenteditable/issues", | ||
"license": "MIT", | ||
"author": { | ||
"name": "Léo Flaventin Hauchecorne", | ||
"email": "hl037.prog@gmail.com", | ||
"url": "http://leo-flaventin.com" | ||
}, | ||
"main": "dist/contenteditable.umd.js", | ||
@@ -20,0 +20,0 @@ "module": "dist/contenteditable.esm.js", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
20934