From 12aed8fe647d703a32dcb306a6b37c867ace4dbd Mon Sep 17 00:00:00 2001 From: uu59 Date: Thu, 27 Nov 2014 13:48:41 +0900 Subject: [PATCH] Fix notification --- app/assets/javascripts/notification.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/assets/javascripts/notification.js b/app/assets/javascripts/notification.js index 587066f..04aa6ae 100644 --- a/app/assets/javascripts/notification.js +++ b/app/assets/javascripts/notification.js @@ -46,10 +46,10 @@ computed: { alertsCount: { - $get: function(){ return this.alerts.length; } + get: function(){ return this.alerts.length; } }, hasAlerts: { - $get: function(){ return this.alertsCount > 0; } + get: function(){ return this.alertsCount > 0; } } },