Changeset - ebbaebaae058
[Not reviewed]
default
0 1 0
Takumi IINO - 11 years ago 2014-07-21 17:46:25
trot.thunder@gmail.com
templates: replace YUI with jquery in kallithea/templates/index_base.html
1 file changed with 5 insertions and 5 deletions:
0 comments (0 inline, 0 general)
kallithea/templates/index_base.html
Show inline comments
 
@@ -169,19 +169,19 @@
 
            });
 

	
 
        };
 
        YUE.on('q_filter','click',function(){
 
            if(!YUD.hasClass('q_filter', 'loaded')){
 
        $('#q_filter').click(function(){
 
            if(!$('#q_filter').hasClass('loaded')){
 
                //TODO: load here full list later to do search within groups
 
                YUD.addClass('q_filter', 'loaded');
 
                $('#q_filter').addClass('loaded');
 
            }
 
        });
 

	
 
        YUE.on('q_filter','keyup',function (e) {
 
        $('#q_filter').keyup(function(){
 
            clearTimeout(filterTimeout);
 
            filterTimeout = setTimeout(updateFilter,600);
 
        });
 

	
 
        if(YUD.get('q_filter').value) {
 
        if($('#q_filter').val()) {
 
            updateFilter();
 
        }
 
      </script>
0 comments (0 inline, 0 general)