We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3701f3 commit b81b002Copy full SHA for b81b002
demo/flavorzoom_files/my_food_plan_pick_foods.js
@@ -1,16 +1,16 @@
1
-$(function() {
+$(function () {
2
var theTable = $('table.food_planner')
3
4
- theTable.find("tbody > tr").find("td:eq(1)").mousedown(function(){
+ theTable.find("tbody > tr").find("td:eq(1)").mousedown(function () {
5
$(this).prev().find(":checkbox").click()
6
});
7
8
- $("#filter").keyup(function() {
9
- $.uiTableFilter( theTable, this.value );
+ $("#filter").keyup(function () {
+ $.uiTableFilter(theTable, this.value);
10
})
11
12
- $('#filter-form').submit(function(){
+ $('#filter-form').submit(function () {
13
theTable.find("tbody > tr:visible > td:eq(1)").mousedown();
14
return false;
15
}).focus(); //Give focus to input field
16
-});
+});
0 commit comments