fix plugin path references

This commit is contained in:
Matias Alejo Garcia 2014-12-03 16:30:43 -03:00
commit d5a75b1460
4 changed files with 8 additions and 8 deletions

View file

@ -3,7 +3,7 @@
angular.module('copayApp.services')
.factory('localstorageService', function($rootScope) {
var LS = require('../plugins/LocalStorage');
var LS = require('../js/plugins/LocalStorage');
var ls = new LS();
return ls;
});