Commit 36b50c3ca5a376fee74b9056942475a207d42690

Authored by Leonardo Merlin
1 parent c0c46b5e

Clean code

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
src/app/index.run.js
... ... @@ -81,7 +81,7 @@
81 81 }
82 82  
83 83 /** @ngInject */
84   - function runSocialAuth($window, $rootScope, $interval, $log) {
  84 + function runSocialAuth($window, $rootScope, $interval) {
85 85  
86 86 $window.oauthClientAction = function(url) {
87 87 var child = $window.open(url, '_blank');
... ... @@ -103,7 +103,7 @@
103 103 };
104 104  
105 105 $window.addEventListener('message', function(eventMessage) {
106   - $log.debug('eventMessage', eventMessage);
  106 + // $log.debug('eventMessage', eventMessage);
107 107  
108 108 if (eventMessage.data.message === 'oauthClientPluginResult') {
109 109 $rootScope.$broadcast('oauthClientPluginResult', eventMessage);
... ...