summaryrefslogtreecommitdiff
path: root/src/web
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-02-24 03:05:50 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-02-24 03:05:50 +0900
commit7c2fce1f77511ffe5d4cdba28911493dab9f7eb0 (patch)
tree591045ec455d0f9f187c6a2ea66f0802867ec3aa /src/web
parent:v: (diff)
downloadsharkey-7c2fce1f77511ffe5d4cdba28911493dab9f7eb0.tar.gz
sharkey-7c2fce1f77511ffe5d4cdba28911493dab9f7eb0.tar.bz2
sharkey-7c2fce1f77511ffe5d4cdba28911493dab9f7eb0.zip
:v:
Diffstat (limited to 'src/web')
-rw-r--r--src/web/app/mobile/views/pages/home.vue5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/web/app/mobile/views/pages/home.vue b/src/web/app/mobile/views/pages/home.vue
index 2d09d555ab..70650ce498 100644
--- a/src/web/app/mobile/views/pages/home.vue
+++ b/src/web/app/mobile/views/pages/home.vue
@@ -33,7 +33,7 @@
<option value="tips">ヒント</option>
</select>
<button @click="addWidget">追加</button>
- <p>移動するには「三」をドラッグします。削除するには「x」をタップします。</p>
+ <p><a @click="hint">カスタマイズのヒント</a></p>
</header>
<x-draggable
:list="widgets"
@@ -152,6 +152,9 @@ export default Vue.extend({
document.title = 'Misskey';
}
},
+ hint() {
+ alert('ウィジェットを追加/削除したり並べ替えたりできます。ウィジェットを移動するには「三」をドラッグします。ウィジェットを削除するには「x」をタップします。いくつかのウィジェットはタップすることで表示を変更できます。');
+ },
widgetFunc(id) {
const w = this.$refs[id][0];
if (w.func) w.func();