all repos — litestore @ 07b8f9c4a9e668bed73dab42403df154f927c499

A minimalist nosql document store.

app/js/app.js

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
var app = app || {};
(function(){
  'use strict';

  m.route.mode = "hash";

  m.route(document.body, "/info", {
    '/info': app.info,
    "/tags/:id": app.tags,
    "/document/:id...": app.document,
    "/guide/:id": app.guide
  });
}());