From c5de76a73dba08f53b0f779f230e348cfa8d8668 Mon Sep 17 00:00:00 2001 From: Sean McArthur <sean.monstar@gmail.com> Date: Mon, 9 Jul 2012 11:14:34 -0700 Subject: [PATCH] remove console.logs from interaction_data module --- resources/static/common/js/modules/interaction_data.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/resources/static/common/js/modules/interaction_data.js b/resources/static/common/js/modules/interaction_data.js index 3c9e7ccd6..181db90d6 100644 --- a/resources/static/common/js/modules/interaction_data.js +++ b/resources/static/common/js/modules/interaction_data.js @@ -122,7 +122,7 @@ BrowserID.Modules.InteractionData = (function() { // if we were orphaned last time, but user is now authenticated, // lets see if their action end in success, and if so, // remove the orphaned flag - //")) + // // actions: // - user_staged => is authenticated? // - email_staged => email count is higher? @@ -132,9 +132,7 @@ BrowserID.Modules.InteractionData = (function() { if (current && current.orphaned) { var events = current.event_stream || []; if (hasEvent(events, MediatorToKPINameTable.user_staged)) { - console.log('user staged!') network.checkAuth(function(auth) { - console.log('aut checked'); if (!!auth) { current.orphaned = false; model.setCurrent(current); @@ -152,6 +150,7 @@ BrowserID.Modules.InteractionData = (function() { complete(onComplete); } } else { + // not an orphan, move along complete(onComplete); } } -- GitLab