standardize datatype for callback for storage change callack serialization

pull/1/head
ansuz 2016-08-30 18:02:51 +02:00
parent 43fcb29490
commit c641692295
1 changed files with 5 additions and 1 deletions

View File

@ -83,7 +83,11 @@ define(function () {
// start listening for changes
window.addEventListener('storage', function (e) {
changeHandlers.forEach(function (f) {
f(e);
f({
key: e.key,
oldValue: e.oldValue,
newValue: e.newValue,
});
});
});
}