-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Scott Trinh
committed
Jul 3, 2016
1 parent
db03a8d
commit 99f2298
Showing
5 changed files
with
17 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "angular-localforage", | ||
"main": "dist/angular-localForage.js", | ||
"version": "1.3.0", | ||
"version": "1.3.1", | ||
"homepage": "https://github.com/ocombe/angular-localForage", | ||
"authors": [ | ||
"Olivier Combe <[email protected]>" | ||
|
@@ -39,4 +39,4 @@ | |
"localforage": "~1.4", | ||
"angular": "1.2.x - 1.5.x" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
/** | ||
* angular-localforage - Angular service & directive for https://github.com/mozilla/localForage (Offline storage, improved.) | ||
* @version v1.3.0 | ||
* @version v1.3.1 | ||
* @link https://github.com/ocombe/angular-localForage | ||
* @license MIT | ||
* @author Olivier Combe <[email protected]> | ||
*/ | ||
(function(root, factory) { | ||
'use strict'; | ||
|
||
var angular = root ? root.angular : window.angular; | ||
var angular = (root && root.angular) || (window && window.angular); | ||
if(typeof define === 'function' && define.amd) { // AMD | ||
define(['localforage'], function(localforage) { | ||
factory(angular, localforage); | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters