UNPKG

field-guide

Version:

a fully-functional, static site implementation of a design system documentation site

15 lines (12 loc) 373 B
/* eslint-disable ember/no-classic-classes, prettier/prettier */ import HistoryLocation from '@ember/routing/history-location'; export default HistoryLocation.extend({ formatURL() { let url = this._super(...arguments); if (url.includes('#')) { return url.replace(/([^/])#(.*)/, '$1/#$2'); } else { return url.replace(/\/?$/, '/'); } } });