Changeset - 55a4cbcd464d
[Not reviewed]
beta
0 3 0
Marcin Kuzminski - 14 years ago 2011-08-28 01:18:20
marcin@python-works.com
fixed timeout reset on active filters searches, should work faster now !
3 files changed with 3 insertions and 3 deletions:
0 comments (0 inline, 0 general)
rhodecode/templates/admin/users/user_edit_my_account.html
Show inline comments
 
@@ -201,11 +201,11 @@
 
            }
 
        }
 
     }
 
     
 
     E.on(q_filter,'keyup',function(e){
 
         clearTimeout(F.filterTimeout); 
 
         setTimeout(F.updateFilter,600); 
 
         F.filterTimeout = setTimeout(F.updateFilter,600); 
 
     });
 
     
 
    </script>
 
</%def>  
 
\ No newline at end of file
rhodecode/templates/base/base.html
Show inline comments
 
@@ -180,13 +180,13 @@
 
						                }
 
						            }
 
						         }
 
						         
 
						         YUE.on(q_filter,'keyup',function(e){
 
						             clearTimeout(F.filterTimeout); 
 
						             setTimeout(F.updateFilter,600); 
 
						             F.filterTimeout = setTimeout(F.updateFilter,600); 
 
						         });
 
						}
 
						   var loaded = YUD.hasClass('repo_switcher','loaded');
 
						   if(!loaded){
 
							   YUD.addClass('repo_switcher','loaded');
 
							   ypjax("${h.url('repo_switcher')}",'repo_switcher_list',
rhodecode/templates/index_base.html
Show inline comments
 
@@ -237,10 +237,10 @@
 
        // set new count into dashboard
 
        set_count(nodes.length - obsolete.length)
 
     }
 
     
 
     E.on(q_filter,'keyup',function(e){
 
         clearTimeout(F.filterTimeout); 
 
         setTimeout(F.updateFilter,600); 
 
         F.filterTimeout = setTimeout(F.updateFilter,600); 
 
     });
 
     
 
    </script>
0 comments (0 inline, 0 general)