all repos — litestore @ 9678e675d320fb2ba6d09d35728d42c443be6faf

A minimalist nosql document store.

app/js/app.js

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
(function(){
  'use strict';
  var app = window.LS || (window.LS = {});
  
  app.flash = m.prop();
  app.system = m.prop();
  app.init = function(info){
    app.system(info);
    console.log(app.system());
    m.route.mode = "hash";

    m.route(document.body, "/info", {
      '/info': app.info,
      "/tags/:id": app.tags,
      "/document/:action/:id...": app.document,
      "/guide/:id": app.guide,
      "/new": app.create,
      "/search": app.search
    });
  };
  Info.get().then(app.init);
  
}());