Merge pull request #1917 from matiu/ref/localstorage

reuse LocalStorage plugin
This commit is contained in:
Gustavo Maximiliano Cortez 2014-12-02 11:03:34 -03:00
commit b3b0d7903e
2 changed files with 17 additions and 7 deletions

View file

@ -0,0 +1,9 @@
'use strict';
angular.module('copayApp.services')
.factory('localstorageService', function($rootScope) {
var LS = require('../plugins/LocalStorage');
var ls = new LS();
return ls;
});