Add Insight save and register

This commit is contained in:
Esteban Ordano 2014-10-22 00:14:48 -03:00 committed by Matias Alejo Garcia
commit 5d980af518
9 changed files with 168 additions and 43 deletions

View file

@ -7,7 +7,6 @@ function LocalStorage() {
LocalStorage.prototype.init = function() {
};
LocalStorage.prototype.getItem = function(k,cb) {
return cb(localStorage.getItem(k));
};
@ -37,5 +36,4 @@ LocalStorage.prototype.allKeys = function(cb) {
return cb(ret);
};
module.exports = LocalStorage;