Skip to content

Commit

Permalink
Merge pull request #5 from passy/uglify-annotate
Browse files Browse the repository at this point in the history
Add explicit injection annotations
  • Loading branch information
Gias Kay Lee committed Jul 24, 2013
2 parents 77cbd1e + 7ed86e3 commit 56e7505
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions ngStorage.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,12 @@
factory('$sessionStorage', _storageFactory('sessionStorage'));

function _storageFactory(storageType) {
return function(
return [
'$rootScope',
'$browser',
'$window',

function(
$rootScope,
$browser,
$window
Expand Down Expand Up @@ -95,7 +100,7 @@
});

return $storage;
};
}];
}

})();

0 comments on commit 56e7505

Please sign in to comment.