git ssb

0+

punkmonk / double



Commit 98f461d19e74598f16307611691908bfb204ccad

updated README

austinfrey committed on 11/6/2018, 3:00:49 AM
Parent: 12620577768038d331153bf3c539432cfec9909e

Files changed

README.mdchanged
package.jsonchanged
views/entries.jschanged
README.mdView
@@ -3,5 +3,6 @@
33
44 ## Commands
55 Command | Description |
66 -----------------------|--------------------------------------------------|
7-`$ npm run electro`
7 +`$ npm run electro` | start electron application
8 +`$ npm run electro:clean` | delete databases/indexes, start electron application
package.jsonView
@@ -6,9 +6,8 @@
66 "build": "bankai build index.js",
77 "create": "choo-scaffold",
88 "electro": "electro .",
99 "electro:clean": "rm .test.db accounts.json entries.json && electro .",
10- "carlo": "node carlo",
1110 "inspect": "bankai inspect index.js",
1211 "start": "bankai start index.js",
1312 "test": "standard && npm run test-deps",
1413 "test-deps": "dependency-check . && dependency-check . --extra --no-dev -i tachyons"
views/entries.jsView
@@ -4,17 +4,17 @@
44
55 function view (state, emit) {
66 if (state.title !== TITLE) emit(state.events.DOMTITLECHANGE, TITLE)
77
8- const form = h('form', [
8 + const form = h('form.pb2', [
99 h('div.pb2', [
1010 h('label.mb2', 'debit account'),
1111 h('div', h('select#debit', [
1212 h('option', { value: 'true' }, 'select'),
1313 generateAccountList()
1414 ]))
1515 ]),
16- h('div.pb2', [
16 + h('div.pb3', [
1717 h('label.mb2', 'credit account'),
1818 h('div', h('select#credit', [
1919 h('option', { value: 'true' }, 'select'),
2020 generateAccountList()

Built with git-ssb-web