Skip to content

Instantly share code, notes, and snippets.

@titangene
Last active July 31, 2022 10:02
Show Gist options
  • Select an option

  • Save titangene/337969dfdb5b39f9870afbc86d177f2a to your computer and use it in GitHub Desktop.

Select an option

Save titangene/337969dfdb5b39f9870afbc86d177f2a to your computer and use it in GitHub Desktop.
Bootstrap doc TW / EN switch
(function() {
if (location.host.includes('bootstrap.hexschool'))
url = `https://getbootstrap.com${location.pathname.replace('4.2', '4.6')}`;
else if (location.host.includes('bootstrap5.hexschool'))
url = `https://getbootstrap.com${location.pathname.replace('5.0', '5.0')}`;
else if (location.host.includes('getbootstrap')) {
if (location.pathname.includes('5.0')) {
url = `https://bootstrap5.hexschool.com${location.pathname.replace('5.0', '5.0')}`;
} else if (location.pathname.includes('4.6')) {
url = `https://bootstrap.hexschool.com${location.pathname.replace('4.6', '4.2')}`;
} else {
url = `https://bootstrap.hexschool.com${location.pathname.replace('4.6', '4.2')}`;
}
}
window.open(url, '_blank');
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment