dotledger/dotledger

View on GitHub
app/assets/javascripts/dot_ledger/initializers/router.js

Summary

Maintainability
A
0 mins
Test Coverage
DotLedger.addInitializer(function (options) {
  this.router = new DotLedger.Routers.App();
  this.router.on('route', function () {
    DotLedger.Helpers.Notification.empty();
  });

  Backbone.history.start({
    pushState: true
  });
});