trailing-slash.js 350 B

1234567891011121314
  1. import Ember from 'ember';
  2. export function initialize(container, application) {
  3. application.register('location:trailing-history', Ember.HistoryLocation.extend({
  4. formatURL: function () {
  5. return this._super.apply(this, arguments).replace(/\/?$/, '/');
  6. }
  7. }));
  8. }
  9. export default {
  10. name: 'trailing-slash',
  11. initialize: initialize
  12. };