1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-06-17 17:55:00 +12:00

Popup related changes

This commit is contained in:
Deathamns 2014-12-25 14:53:30 +01:00 committed by gorhill
parent 1807c74580
commit d789ffa442

View file

@ -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();
};
/******************************************************************************/
})();
/******************************************************************************/