Skip to content
This repository has been archived by the owner on Feb 19, 2022. It is now read-only.

Commit

Permalink
hotfix missing $timeout dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
maximepvrt committed Nov 14, 2016
1 parent b86bc9d commit ba8fda2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/factories/GClient.factory.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
(function() {
'use strict';
angular.module('angular-google-gapi').factory('GClient', ['$document', '$q', '$window',
function ($document, $q, $window) {
angular.module('angular-google-gapi').factory('GClient', ['$document', '$q', '$window', '$timeout',
function ($document, $q, $window, $timeout) {

var LOAD_GAE_API = false;
var LOADING_GAE_API = false;
var URL = 'https://apis.google.com/js/client.js?onload=_gapiOnLoad';
var URL = 'https://apis.google.com/js/client:platform.js?onload=_gapiOnLoad';
var API_KEY = null;
var OBSERVER_CALLBACKS = [];

Expand Down

0 comments on commit ba8fda2

Please sign in to comment.