diff --git a/customize.dist/store.js b/customize.dist/store.js index 5c55f7eb2..5b82921ed 100644 --- a/customize.dist/store.js +++ b/customize.dist/store.js @@ -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, + }); }); }); }