diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2017-02-24 18:15:19 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2017-02-24 18:15:19 +0900 |
| commit | eb783ca256224c2d82425f02d34a5932fec5d400 (patch) | |
| tree | 5cd54a9befeff797b5e8be558cc1740db2e77e16 /src | |
| parent | [Client] Refactor: Improve readability (diff) | |
| download | sharkey-eb783ca256224c2d82425f02d34a5932fec5d400.tar.gz sharkey-eb783ca256224c2d82425f02d34a5932fec5d400.tar.bz2 sharkey-eb783ca256224c2d82425f02d34a5932fec5d400.zip | |
[Client] 良い感じに
Diffstat (limited to 'src')
| -rw-r--r-- | src/web/app/mobile/tags/user.tag | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/web/app/mobile/tags/user.tag b/src/web/app/mobile/tags/user.tag index ae77644e7a..4aade31372 100644 --- a/src/web/app/mobile/tags/user.tag +++ b/src/web/app/mobile/tags/user.tag @@ -35,16 +35,13 @@ </div> </div> <nav> - <a data-is-active={ page == 'posts' } onclick={ go.bind(null, 'posts') }>投稿</a> + <a data-is-active={ page == 'posts' } onclick={ go.bind(null, 'posts') }>タイムライン</a> <a data-is-active={ page == 'media' } onclick={ go.bind(null, 'media') }>メディア</a> - <a data-is-active={ page == 'graphs' } onclick={ go.bind(null, 'graphs') }>グラフ</a> - <a data-is-active={ page == 'likes' } onclick={ go.bind(null, 'likes') }>いいね</a> </nav> </header> <div class="body"> <mk-user-timeline if={ page == 'posts' } user={ user }></mk-user-timeline> <mk-user-timeline if={ page == 'media' } user={ user } with-media={ true }></mk-user-timeline> - <mk-user-graphs if={ page == 'graphs' } user={ user }></mk-user-graphs> </div> </div> <style> |