aboutsummaryrefslogtreecommitdiff
path: root/src/components/timeline_menu/timeline_menu_content.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/timeline_menu/timeline_menu_content.vue')
-rw-r--r--src/components/timeline_menu/timeline_menu_content.vue31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/components/timeline_menu/timeline_menu_content.vue b/src/components/timeline_menu/timeline_menu_content.vue
deleted file mode 100644
index 7dc76b62..00000000
--- a/src/components/timeline_menu/timeline_menu_content.vue
+++ /dev/null
@@ -1,31 +0,0 @@
-<template>
- <ul>
- <li v-for="item in list" :key="item.name">
- <router-link
- class="menu-item"
- :to="{ name: (currentUser || item.anon) ? item.route : item.anonRoute, params: { username: currentUser.screen_name } }"
- >
- <FAIcon
- fixed-width
- class="fa-scale-110 fa-old-padding "
- :icon="item.icon"
- />{{ $t(item.label) }}
- <button
- type="button"
- class="button-unstyled"
- @click.stop.prevent="togglePin(item.name)"
- >
- <FAIcon
- fixed-width
- class="fa-scale-110 fa-old-padding "
- :class="{ 'veryfaint': !isPinned(item.name) }"
- :transform="!isPinned(item.name) ? 'rotate-45' : ''"
- icon="thumbtack"
- />
- </button>
- </router-link>
- </li>
- </ul>
-</template>
-
-<script src="./timeline_menu_content.js"></script>