reuse plugin

This commit is contained in:
Matias Alejo Garcia 2014-12-02 03:55:29 -03:00
commit 723f9e89f5
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;
});