summaryrefslogtreecommitdiff
path: root/js/reader.js
blob: 453c925c893fd47f1620fbc6f7daa4baff8eeb98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
$(document).ready(function() {
	$(window).on("click tap", function() {
		if (parent.$(".header").is(":visible")) {
			parent.show_ui(false);
			parent.request_fullscreen();
		} else {
			parent.show_ui(true);
			parent.disable_fullscreen();
		}
	});
});