Skip to content

Commit

Permalink
remove https from rtfd links
Browse files Browse the repository at this point in the history
  • Loading branch information
lewisakura committed Jun 9, 2018
1 parent 1067e5a commit d6423b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions commander.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ const commands = {
execute(args) {
if (args.length > 0) {
chrome.tabs.create({
url: 'https://chromecommander.rtfd.io/en/latest/' + args[0] + '.html',
url: 'http://chromecommander.rtfd.io/en/latest/' + args[0] + '.html',
active: true
});
} else {
chrome.tabs.create({
url: 'https://chromecommander.rtfd.io',
url: 'http://chromecommander.rtfd.io',
active: true
});
}
Expand Down

0 comments on commit d6423b9

Please sign in to comment.