3den/riotjs-todomvc

View on GitHub
js/routes.js

Summary

Maintainability
A
0 mins
Test Coverage
'use strict';

function routes(models) {
    riot.route(function(hash) {
        models.todo.trigger('load', hash.slice(2));
    });
}