autoformat more easy files

This commit is contained in:
Zeke Sikelianos 2016-03-25 12:57:17 -07:00 committed by Kevin Sawicki
parent 67fa250020
commit 3855a774ab
19 changed files with 1068 additions and 1076 deletions

View file

@ -1,13 +1,13 @@
const url = require('url');
const chrome = window.chrome = window.chrome || {};
const url = require('url')
const chrome = window.chrome = window.chrome || {}
chrome.extension = {
getURL: function(path) {
getURL: function (path) {
return url.format({
protocol: location.protocol,
slashes: true,
hostname: location.hostname,
pathname: path
});
})
}
};
}