From c39115f5aef3f9d59e54c5875f0018a8be73dc8c Mon Sep 17 00:00:00 2001 From: Kev Zettler Date: Fri, 3 Jun 2011 17:01:54 -0700 Subject: [PATCH] removed one off mixpanel stuff --- lib/locomotive/hosting/bushido/middleware.rb | 1 - public/javascripts/mixpanel.js | 89 -------------------- 2 files changed, 90 deletions(-) delete mode 100644 public/javascripts/mixpanel.js diff --git a/lib/locomotive/hosting/bushido/middleware.rb b/lib/locomotive/hosting/bushido/middleware.rb index d9896dd4..53fc27aa 100644 --- a/lib/locomotive/hosting/bushido/middleware.rb +++ b/lib/locomotive/hosting/bushido/middleware.rb @@ -35,7 +35,6 @@ module Locomotive var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(bushido, s); })(); - STR ) diff --git a/public/javascripts/mixpanel.js b/public/javascripts/mixpanel.js deleted file mode 100644 index db505a1d..00000000 --- a/public/javascripts/mixpanel.js +++ /dev/null @@ -1,89 +0,0 @@ -var mpq = []; -mpq.push(["init", "YOUR TOKEN"]); -(function() { -var mp = document.createElement("script"); mp.type = "text/javascript"; mp.async = true; -mp.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') + "//api.mixpanel.com/site_media/js/api/mixpanel.js"; -var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(mp, s); -})(); - -$(function(){ - console.log('doc ready event'); - var section = $('body')[0].className; - - var props = { - app: window._bushido_app - ,claimed: window._bushido_claimed - }; - - mpq.push(["track_links", $('div#header h1 a.single'), 'big site name header click', props]); - mpq.push(["track_links", $('li.contents a'), "Contents", props]); - mpq.push(["track_links", $('li.assets a'), "Assets", props]); - mpq.push(["track_links", $('li.settings a'), "Settings", props]); - - - $('body.contents div#submenu li:first').each(function(){ - var $this = $(this); - $this.bind('mouseover', function(){ - //mpmetrics.track("pages hover"); - mpq.push(["track", "pages hover", props]); - }); - - // mpmetrics.track_links($this.find('div.header a'), "pages popup new item"); - // mpmetrics.track_links($this.find('div.inner a'), "pages popup inner links"); - }); - - $('body.contents div#submenu li:not(:first)').each(function(){ - var $this = $(this); - $this.bind('mouseover', function(){ - //mpmetrics.track("model hover"); - mpq.push(["track", "model hover", props]); - }); - - // mpmetrics.track_links($this.find('div.header a'), "model popup new item"); - // mpmetrics.track_links($this.find('div.inner a'), "model popup inner links"); - }); - - $('img.toggler').each(function(){ - var $this = $(this); - $this.bind('click', function(){ - mpq.push(["track", "hiearchy toggler click", props]); - }); - }) - - $('body.contents a.remove').each(function(){ - var $this = $(this); - $this.bind('click', function(){ - mpq.push(["track", "page trash click", props]); - }); - }); - - $('body.assets button span:contains(Create)').bind('click', function(){ - mpq.push(["track", "asset create", props]); - }); - - $('body.contents button span:contains(Create)').bind('click', function(){ - mpq.push(["track", "content create", props]); - }); - - $('fieldset span').each(function(){ - var $this = $(this); - - $this.bind('click', function(){ - var $content = $this.parent().next('ol') - ,state = ($content.is(':visible') === true) ? 'close' : 'open'; - mpq.push(["track", section+ " - "+$this.text()+" click to "+state, props]); - }); - }); - - $('input[type="text"]').each(function(){ - var $this = $(this); - $this.bind('change', function(){ - mpq.push(["track", section+ ' input '+$this.attr('name')+ " change" ,props]); - }); - }); - - $('h2 a.editable').bind('click', function(){ - mpq.push(["track", "editable title click" ,props]); - }); - -}); \ No newline at end of file