diff --git a/TODO b/TODO index ea9b3c6..83fe928 100644 --- a/TODO +++ b/TODO @@ -11,7 +11,6 @@ Later: * All-branch search/results so you can see version availability of recipes in all branches at once? * Rawrecipes branch support * Display no-results found message when search does not return any results (all tables) -* Change behaviour of filter menus to stay open so that you can check / uncheck multiple items * Show layer type in layer detail? * Usage links in list page? * Subdirs in list page? diff --git a/templates/layerindex/layers.html b/templates/layerindex/layers.html index 01ba9e5..f612cb0 100644 --- a/templates/layerindex/layers.html +++ b/templates/layerindex/layers.html @@ -136,6 +136,10 @@ $.uiTableFilter( theTable, this.value ); }) + $('.dropdown-menu input, .dropdown-menu label').click(function(e) { + e.stopPropagation(); + }) + $('#filter-form').submit(function(){ theTable.find("tbody > tr:visible > td:eq(1)").mousedown(); return false;