Commit 6d12467bff1b13ffa8d96c6453520c1ea3b0f18c
1 parent
0bb066e6
fix: #48 #56 #60 #45
Showing
4 changed files
with
4 additions
and
5 deletions
front-end/h5/src/components/core/editor/canvas/preview.js
front-end/h5/src/components/core/editor/edit-panel/props.js
| ... | ... | @@ -91,7 +91,7 @@ export default { |
| 91 | 91 | // editingElement.pluginProps[propKey] = e.target ? e.target.value : e |
| 92 | 92 | // } |
| 93 | 93 | change (e) { |
| 94 | - // TODO fixme: update plugin props in vuex with dispatch | |
| 94 | + // fixme: update plugin props in vuex with dispatch | |
| 95 | 95 | editingElement.pluginProps[propKey] = e.target ? e.target.value : e |
| 96 | 96 | } |
| 97 | 97 | } | ... | ... |
front-end/h5/src/components/core/editor/edit-panel/script.js
front-end/h5/src/components/core/support/shape.js
| ... | ... | @@ -135,8 +135,6 @@ export default { |
| 135 | 135 | } |
| 136 | 136 | document.addEventListener('mousemove', move, true) |
| 137 | 137 | document.addEventListener('mouseup', up, true) |
| 138 | - // TODO add comment | |
| 139 | - return true | |
| 140 | 138 | }, |
| 141 | 139 | handleMousedown (e) { |
| 142 | 140 | if (this.handleMousedownProp) { | ... | ... |