0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-13 06:32:39 +00:00
This commit is contained in:
Scott Tolksdorf
2016-12-27 17:42:16 -05:00
parent f75f60aa1e
commit 41303e6918
7 changed files with 22 additions and 126 deletions

View File

@@ -19,7 +19,6 @@ const Actions = {
updateMetaData : (meta) => {
dispatch('UPDATE_META', meta);
},
pendingSave : () => {
clearTimeout(pendingTimer);
pendingTimer = setTimeout(Actions.save, PENDING_TIMEOUT);
@@ -38,7 +37,6 @@ const Actions = {
dispatch('SET_STATUS', 'ready');
});
},
saveNew : () => {
dispatch('SET_STATUS', 'saving');
request.post('/api')

View File

@@ -1,6 +1,5 @@
const _ = require('lodash');
const Utils = {
controlKeys : (mapping) => {
return (e) => {
@@ -13,8 +12,6 @@ const Utils = {
}
},
};
module.exports = Utils;