all repos — litestore @ 49ecdd02163f833c379137fcfe0564e5b8fa3063

A minimalist nosql document store.

app/js/app.js

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

  m.route.mode = "hash";

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