Skip to content

Commit aec3a9a

Browse files
committed
commented out
1 parent e55a143 commit aec3a9a

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

src/store/actions.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,9 @@ const actions = {
109109
[types.updateComponentPosition]: ({ commit }, payload) => {
110110
commit(types.UPDATE_COMPONENT_POSITION, payload);
111111
},
112-
[types.addBinding]: ({ commit }, payload) => {
113-
commit(types.ADD_BINDING, payload);
114-
},
112+
// [types.addBinding]: ({ commit }, payload) => {
113+
// commit(types.ADD_BINDING, payload);
114+
// },
115115

116116
[types.updateComponentSize]: ({ commit }, payload) => {
117117
commit(types.UPDATE_COMPONENT_SIZE, payload);

src/store/mutations.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -206,10 +206,10 @@ const mutations = {
206206
[state.activeComponent]: state.activeComponentObj,
207207
};
208208
},
209-
//add binding
210-
[types.ADD_BINDING]: (state, payload) => {
211-
//access the htmlList, add payload to the empty bind obj
212-
},
209+
// //add binding
210+
// [types.ADD_BINDING]: (state, payload) => {
211+
// //access the htmlList, add payload to the empty bind obj
212+
// },
213213
[types.DELETE_ACTION_FROM_COMPONENT]: (state, payload) => {
214214
state.componentMap[state.activeComponent].actions = state.componentMap[state.activeComponent].actions.filter(
215215
(action) => action !== payload);

src/store/types.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ export const addActiveComponentClass = 'addActiveComponentClass'
8787
export const deleteActiveComponentClass = 'deleteActiveComponentClass'
8888

8989
//adding vmodel info
90-
export const ADD_BINDING = 'ADD_BINDING'
90+
// export const ADD_BINDING = 'ADD_BINDING'
9191
//
9292
export const deleteActiveComponentNote = 'deleteActiveComponentNote'
9393
export const addActiveComponentNote = 'addActiveComponentNote'

0 commit comments

Comments
 (0)