From 6c24f75f7309ec4b414fca8de39574b69d42bbec Mon Sep 17 00:00:00 2001 From: Duarte Henriques Date: Fri, 25 Jan 2013 10:37:53 +0000 Subject: [PATCH] Fix google event tracking value --- lib/analytical/modules/google.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/analytical/modules/google.rb b/lib/analytical/modules/google.rb index 8115e32..a36b752 100644 --- a/lib/analytical/modules/google.rb +++ b/lib/analytical/modules/google.rb @@ -31,7 +31,7 @@ def init_javascript(location) def event(*args) # name, options, callback <<-JS.gsub(/^ {10}/, '') - _gaq.push(['_trackEvent', 'Event', name, options && options.value]); + _gaq.push(['_trackEvent', 'Event', name, '', options && options.value]); JS end