summaryrefslogtreecommitdiff
path: root/js/index.js
blob: e76be90342d2c403779574948607d5ec529f0838 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
function offline_cache(elem) {
	try {
		var bookId = elem.getAttribute("data-book-id");

		console.log(bookId);


		return false;

	} catch (e) {
		console.warn(e);
	}
}