forgot variable rename broke column regex
authorDobrica Pavlinusic <dpavlin@rot13.org>
Thu, 1 Jul 2010 20:52:02 +0000 (22:52 +0200)
committerDobrica Pavlinusic <dpavlin@rot13.org>
Thu, 1 Jul 2010 20:52:02 +0000 (22:52 +0200)
templates/all_checkboxes.html.ep

index 4fcbeff..3065a22 100644 (file)
@@ -79,7 +79,7 @@ var apply_regex = function(e) {
        var included = 0;
        var excluded = 0;
     $("input[type='checkbox']:not([disabled='disabled'])").each( function(i,element){
-               if ( r.test( v ) ) {
+               if ( r.test( user_regex ) ) {
                        $(this).parent().removeClass('excluded').addClass('included');
                        included++;
                } else {