summaryrefslogtreecommitdiff
path: root/html/includes/js/clickrows.js
blob: fb9fda2fd9f4a8e3fcabb718929c16e967ca684d (plain)
1
2
3
4
5
6
7
8

$(document).ready(function($) {
      $(".clickableRow").click(function() {
			if(event.which == 1) {
				window.document.location = $(this).attr("href");
			} 
      });
});