mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-16 15:45:13 +00:00
14 lines
282 B
JavaScript
14 lines
282 B
JavaScript
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")
|
|
};
|
|
}); |