0f17378b26
Refs #4001 - grunt-jscs@0.8.1 which provides ES6 support.
23 lines
556 B
JavaScript
23 lines
556 B
JavaScript
/*global Ember */
|
|
|
|
var trailingHistory,
|
|
registerTrailingLocationHistory;
|
|
|
|
trailingHistory = Ember.HistoryLocation.extend({
|
|
formatURL: function () {
|
|
// jscs: disable
|
|
return this._super.apply(this, arguments).replace(/\/?$/, '/');
|
|
// jscs: enable
|
|
}
|
|
});
|
|
|
|
registerTrailingLocationHistory = {
|
|
name: 'registerTrailingLocationHistory',
|
|
|
|
initialize: function (container, application) {
|
|
application.register('location:trailing-history', trailingHistory);
|
|
}
|
|
};
|
|
|
|
export default registerTrailingLocationHistory;
|