Merge pull request #105 from egyptianbman/patch-1

Check for document being in [0] key of $document
revert-117-master
Gregory Pike 10 years ago
commit 0a256f307b

@ -75,6 +75,8 @@ angularLocalStorage.provider('localStorageService', function() {
// When Angular's $document is not available
if (!$document) {
$document = document;
} else if ($document[0]) {
$document = $document[0];
}
// If there is a prefix set in the config lets use that with an appended period for readability