blob: e65e496b8fca2237d9ff7597c2c2ffc810c2ab1d [file] [edit]
// Copyright (c) 2009 Giampaolo Rodola. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Open all external URLs in a new tab.
document.querySelectorAll("a[href^='http']").forEach((a) => {
if (a.hostname !== location.hostname) {
a.target = "_blank";
a.rel = "noopener noreferrer";
}
});