18 lines
388 B
JavaScript
18 lines
388 B
JavaScript
import Ember from 'ember';
|
|
|
|
const {HistoryLocation} = Ember;
|
|
|
|
let trailingHistory = HistoryLocation.extend({
|
|
formatURL() {
|
|
return this._super.apply(this, arguments).replace(/\/?$/, '/');
|
|
}
|
|
});
|
|
|
|
export default {
|
|
name: 'registerTrailingLocationHistory',
|
|
|
|
initialize(application) {
|
|
application.register('location:trailing-history', trailingHistory);
|
|
}
|
|
};
|