summaryrefslogtreecommitdiff
path: root/js/dict.js
blob: 22bbf98d774482d975b92b2e1d16a2ad92aa5423 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
$(document).ready(function() {
	$(window).on("mouseup touchend", function() {
		if (!navigator.onLine) return;

		var sel = getSelection().toString().trim();

		if (sel.match(/^\w+$/)) {
			parent.dict_lookup(sel, function() {
				getSelection().removeAllRanges();
			});
		}
	});
});