Skip to content

Commit b81b002

Browse files
committed
Format example JS file
1 parent f3701f3 commit b81b002

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
$(function() {
1+
$(function () {
22
var theTable = $('table.food_planner')
33

4-
theTable.find("tbody > tr").find("td:eq(1)").mousedown(function(){
4+
theTable.find("tbody > tr").find("td:eq(1)").mousedown(function () {
55
$(this).prev().find(":checkbox").click()
66
});
77

8-
$("#filter").keyup(function() {
9-
$.uiTableFilter( theTable, this.value );
8+
$("#filter").keyup(function () {
9+
$.uiTableFilter(theTable, this.value);
1010
})
1111

12-
$('#filter-form').submit(function(){
12+
$('#filter-form').submit(function () {
1313
theTable.find("tbody > tr:visible > td:eq(1)").mousedown();
1414
return false;
1515
}).focus(); //Give focus to input field
16-
});
16+
});

0 commit comments

Comments
 (0)