Browse Source

Popup related changes

pull/2/head
Deathamns 10 years ago
committed by gorhill
parent
commit
d789ffa442
  1. 16
      platform/chromium/vapi-common.js

16
platform/chromium/vapi-common.js

@ -73,18 +73,22 @@ vAPI.download = function(details) {
/******************************************************************************/
vAPI.getURL = function(path) {
return chrome.runtime.getURL(path);
};
vAPI.getURL = chrome.runtime.getURL;
vAPI.i18n = function(s) {
return chrome.i18n.getMessage(s);
};
/******************************************************************************/
vAPI.i18n = chrome.i18n.getMessage;
setScriptDirection(vAPI.i18n('@@ui_locale'));
/******************************************************************************/
vAPI.closePopup = function() {
window.open('','_self').close();
};
/******************************************************************************/
})();
/******************************************************************************/
Loading…
Cancel
Save