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