diff --git a/index.html b/index.html index 51f28e1..65bdf85 100644 --- a/index.html +++ b/index.html @@ -19,13 +19,12 @@ var profilesKey = 'ds2_profiles'; +
diff --git a/js/main.js b/js/main.js index 2626444..f3404e5 100644 --- a/js/main.js +++ b/js/main.js @@ -29,7 +29,6 @@ $('input[type="checkbox"]').click(function() { var id = $(this).attr('id'); var isChecked = profiles[profilesKey][profiles.current].checklistData[id] = $(this).prop('checked'); - //_gaq.push(['_trackEvent', 'Checkbox', (isChecked ? 'Check' : 'Uncheck'), id]); $(this).parent().parent().find('li > label > input[type="checkbox"]').each(function() { var id = $(this).attr('id'); profiles[profilesKey][profiles.current].checklistData[id] = isChecked; @@ -43,7 +42,6 @@ profiles.current = $(this).val(); $.jStorage.set(profilesKey, profiles); populateChecklists(); - //_gaq.push(['_trackEvent', 'Profile', 'Change', profiles.current]); }); $('#profileAdd').click(function() { @@ -53,7 +51,6 @@ $('#profileModalUpdate').hide(); $('#profileModalDelete').hide(); $('#profileModal').modal('show'); - //_gaq.push(['_trackEvent', 'Profile', 'Add']); }); $('#profileEdit').click(function() { @@ -67,7 +64,6 @@ $('#profileModalDelete').hide(); } $('#profileModal').modal('show'); - //_gaq.push(['_trackEvent', 'Profile', 'Edit', profiles.current]); }); $('#profileModalAdd').click(function(event) { @@ -83,7 +79,6 @@ populateChecklists(); } $('#profileModal').modal('hide'); - //_gaq.push(['_trackEvent', 'Profile', 'Create', profile]); }); $('#profileModalUpdate').click(function(event) { @@ -97,7 +92,6 @@ populateProfiles(); } $('#profileModal').modal('hide'); - //_gaq.push(['_trackEvent', 'Profile', 'Update', profile]); }); $('#profileModalDelete').click(function(event) { @@ -114,13 +108,11 @@ populateProfiles(); populateChecklists(); $('#profileModal').modal('hide'); - //_gaq.push(['_trackEvent', 'Profile', 'Delete']); }); $('#profileModalClose').click(function(event) { event.preventDefault(); $('#profileModal').modal('hide'); - //_gaq.push(['_trackEvent', 'Profile', 'Close']); }); calculateTotals();