modules/tabs.jsView |
---|
15 | 15 … | return el |
16 | 16 … | } |
17 | 17 … | |
18 | 18 … | exports.needs = { |
19 | | - emoji_url: 'first', |
20 | 19 … | screen_view: 'first', |
21 | 20 … | search_box: 'first', |
22 | 21 … | blob_url: 'first', |
23 | 22 … | menu: 'first', |
81 | 80 … | tabs.insertBefore(h('div.header.left', |
82 | 81 … | h('div', |
83 | 82 … | h('a', {href: '#' + id}, img) |
84 | 83 … | ), |
85 | | - h('p.edit', |
86 | | - h('a', {innerHTML: '<a href="#'+ id +'">Edit your profile</a> <a href="#Key"><img src="' + api.emoji_url('key') + '" class="emoji" /></a>'}) |
87 | | - ), |
88 | 84 … | h('div.header__tabs', tabs.firstChild), |
89 | 85 … | h('div.header__search', h('div', search), api.menu()) |
90 | 86 … | ), tabs.firstChild) |
91 | 87 … | |
94 | 90 … | |
95 | 91 … | |
96 | 92 … | |
|
97 | 93 … | if(!saved || saved.length < 3) |
98 | | - saved = ['Public', 'Direct', 'Mentions'] |
| 94 … | + saved = ['Public', 'Direct', 'Mentions', 'Key'] |
99 | 95 … | |
100 | 96 … | saved.forEach(function (path) { |
101 | 97 … | var el = api.screen_view(path) |
102 | 98 … | if(!el) return |