first take
[ReadingsJQM.git] / js / app / app.js
1 (function() {
2
3   window.Readings = {};
4
5   $.fn.Readings = {};
6
7   $(document).on('pageinit', function(ev) {
8     Readings.config = new Readings.Config({
9       wlurl: 'http://readings.local',
10       categories: {
11         'authors': 'autor',
12         'epochs': 'epoka',
13         'genres': 'gatunek',
14         'kinds': 'rodzaj',
15         'themes': 'motyw'
16       }
17     });
18     return Readings.category_list($('#list-categories'));
19   });
20
21 }).call(this);