From a5d051de3fdf1d6edc9644f1da25a342e293e549 Mon Sep 17 00:00:00 2001 From: gorhill Date: Sat, 14 Mar 2015 14:12:05 -0400 Subject: [PATCH] this fixes #792 --- platform/chromium/vapi-common.js | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/platform/chromium/vapi-common.js b/platform/chromium/vapi-common.js index 799136d..d67f419 100644 --- a/platform/chromium/vapi-common.js +++ b/platform/chromium/vapi-common.js @@ -83,6 +83,15 @@ vAPI.closePopup = function() { /******************************************************************************/ +// A localStorage-like object which should be accessible from the +// background page or auxiliary pages. +// This storage is optional, but it is nice to have, for a more polished user +// experience. + +vAPI.localStorage = window.localStorage; + +/******************************************************************************/ + })(); /******************************************************************************/