Commit bb827e06ce952c8aa8c4c54e7ae7a1c669860776
tab icons (status menu icons)
Joran committed on 12/18/2016, 9:59:37 PMParent: 5aa32d04ac706448eca8170dafbf518494f1ae63
Files changed
modules_extra/git-ssb.js | changed |
modules_extra/key.js | changed |
modules_extra/network.js | changed |
modules_extra/query.js | changed |
modules_extra/versions.js | changed |
modules_extra/git-ssb.js | ||
---|---|---|
@@ -20,9 +20,9 @@ | ||
20 | 20 … | |
21 | 21 … | exports.create = function (api) { |
22 | 22 … | return { |
23 | 23 … | menu_items: function () { |
24 | - return h('a', {href: '#/git-ssb'}, '/git-ssb') | |
24 … | + return h('a', {href: '#/git-ssb'}, h("i.glyphicon.glyphicon-cube-black"), 'git-ssb') | |
25 | 25 … | }, |
26 | 26 … | |
27 | 27 … | screen_view: function (path, sbot) { |
28 | 28 … | if(path === '/git-ssb') { |
modules_extra/key.js | ||
---|---|---|
@@ -15,9 +15,9 @@ | ||
15 | 15 … | |
16 | 16 … | exports.create = function (api) { |
17 | 17 … | return { |
18 | 18 … | menu_items: function () { |
19 | - return h('a', {href: '#/key'}, '/key') | |
19 … | + return h('a', {href: '#/key'}, h("i.glyphicon.glyphicon-link"), 'key') | |
20 | 20 … | }, |
21 | 21 … | screen_view: function (path, sbot) { |
22 | 22 … | if(path === '/key') { |
23 | 23 … | if(process.title === 'browser') { |
@@ -51,12 +51,11 @@ | ||
51 | 51 … | ) |
52 | 52 … | ) |
53 | 53 … | ) |
54 | 54 … | return div |
55 | - } else { | |
55 … | + } else { | |
56 | 56 … | return h('p', 'Your key is saved at .ssb/secret') |
57 | 57 … | } |
58 | 58 … | } |
59 | 59 … | } |
60 | 60 … | } |
61 | 61 … | } |
62 | - |
modules_extra/network.js | ||
---|---|---|
@@ -105,9 +105,9 @@ | ||
105 | 105 … | exports.create = function (api) { |
106 | 106 … | |
107 | 107 … | return { |
108 | 108 … | menu_items: function () { |
109 | - return h('a', {href: '#/network'}, '/network') | |
109 … | + return h('a', {href: '#/network'}, h("i.glyphicon.glyphicon-globe"), '/network') | |
110 | 110 … | }, |
111 | 111 … | |
112 | 112 … | builtin_tabs: function () { |
113 | 113 … | return ['/network'] |
@@ -171,6 +171,4 @@ | ||
171 | 171 … | return h('div.column.scroll-y', ol) |
172 | 172 … | } |
173 | 173 … | } |
174 | 174 … | } |
175 | - | |
176 | - |
modules_extra/query.js | ||
---|---|---|
@@ -15,9 +15,9 @@ | ||
15 | 15 … | exports.create = function (api) { |
16 | 16 … | |
17 | 17 … | return { |
18 | 18 … | menu_items: function () { |
19 | - return h('a', {href:'#/query'}, '/query') | |
19 … | + return h('a', {href:'#/query'}, h("i.glyphicon.glyphicon-search"), 'query') | |
20 | 20 … | }, |
21 | 21 … | |
22 | 22 … | builtin_tabs: function () { |
23 | 23 … | return ['/query'] |
@@ -38,9 +38,9 @@ | ||
38 | 38 … | |
39 | 39 … | return h('div.column.scroll', |
40 | 40 … | editor = h('textarea', {style: 'min-height:100px;', oninput: parse, onkeydown: function (e) { |
41 | 41 … | if(!(e.keyCode === 13 && e.ctrlKey)) return |
42 | - | |
42 … | + | |
43 | 43 … | status.textContent = 'running...' |
44 | 44 … | parse() |
45 | 45 … | output.innerHTML = '' |
46 | 46 … | if(stream) stream.abort() |
modules_extra/versions.js | ||
---|---|---|
@@ -9,9 +9,9 @@ | ||
9 | 9 … | exports.create = function () { |
10 | 10 … | |
11 | 11 … | return { |
12 | 12 … | menu_items: function () { |
13 | - return h('a', {href: '#/versions'}, '/versions') | |
13 … | + return h('a', {href: '#/versions'}, h("i.glyphicon.glyphicon-floppy-disk"), 'versions') | |
14 | 14 … | }, |
15 | 15 … | |
16 | 16 … | builtin_tabs: function () { |
17 | 17 … | return ['/versions'] |
Built with git-ssb-web