onlyurei/knockout-spa

View on GitHub
app/resources/resources.js

Summary

Maintainability
A
0 mins
Test Coverage
define(['ko', 'css!./resources.css'], function (ko) {
  return ko.observe({
    resource: '',
    controllers: {
      '/': function () { this.resource = ''; },
      '/:resource': function (resource) { this.resource = resource; }
    }
  });
});