Skip to content

Commit

Permalink
Fix typo 'Expand' ('Expend' previously)
Browse files Browse the repository at this point in the history
  • Loading branch information
moesoha authored Apr 16, 2018
1 parent 2fcd7a7 commit 038a05f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/element/element.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class VConsoleElementsTab extends VConsolePlugin {
onAddTool(callback) {
let that = this;
let toolList = [{
name: 'Expend',
name: 'Expand',
global: false,
onClick: function(e) {
if (that.activedElem) {
Expand Down Expand Up @@ -233,7 +233,7 @@ class VConsoleElementsTab extends VConsolePlugin {
let $view = (new NodeView(node)).get();
// connect to node
node.view = $view;
// expend
// expand
$.delegate($view, 'click', '.vcelm-node', function(event) {
event.stopPropagation();
let $parent = this.parentNode;
Expand Down Expand Up @@ -355,4 +355,4 @@ class VConsoleElementsTab extends VConsolePlugin {

} // END class

export default VConsoleElementsTab;
export default VConsoleElementsTab;

0 comments on commit 038a05f

Please sign in to comment.