summaryrefslogtreecommitdiffstats
path: root/theme/javascript/core/state.js
blob: 79876b95c71afee5a309f29b5912cee7e03cb8ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
define([
    "jQuery"
], function() {
    var $book = $(".book");

    return {
        '$book': $book,

        'githubId': $book.data("github"),
        'level': $book.data("level"),
        'basePath': $book.data("basepath"),
        'revision': $book.data("revision")
    };
});