electron/atom/renderer/lib/chrome-api.js
2016-01-12 16:24:06 -08:00

16 lines
287 B
JavaScript

var chrome, url;
url = require('url');
chrome = window.chrome = window.chrome || {};
chrome.extension = {
getURL: function(path) {
return url.format({
protocol: location.protocol,
slashes: true,
hostname: location.hostname,
pathname: path
});
}
};