Browse Source

More emojis, plus randomized first index ��

sbkwgh 8 years ago
parent
commit
6f173eb1cf
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/components/NotificationButton.vue

+ 3 - 3
src/components/NotificationButton.vue

@@ -28,7 +28,7 @@
 			<div class='notification_button__menu'>
 				<div v-for='notification in notifications' class='notification_button__menu__item'>qwertyuiopasdfghjkl</div>
 				<div class='notification_button__menu__empty' v-if='!notifications.length'>
-					<span>{{emojis[emojiIndex % 4]}}</span>
+					<span>{{emojis[emojiIndex % 6]}}</span>
 					No notifications
 				</div>
 			</div>
@@ -45,8 +45,8 @@
 				notifications: [],
 
 				showMenu: false,
-				emojis: ['😢', '🤷', '😘', '🤔'],
-				emojiIndex: 0
+				emojis: ['😢', '🤷', '😘', '😒', '😔', '💩'],
+				emojiIndex: Math.round(Math.random()*5)
 			}
 		},
 		computed: {