blob: 5ed11e8a95a04f3c9632316f4545cfbc37110d4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
define([
"jQuery"
], function() {
var $book = $(".book");
return {
'$book': $book,
'githubId': $book.data("github"),
'level': $book.data("level"),
'basePath': $book.data("basepath")
};
});
|