Show
Ignore:
Timestamp:
08/19/08 10:31:19 (5 months ago)
Author:
082net
Message:

## wp-slimstat-ex ##

Added sweetTitles_jquery.js
Small fixes.

Location:
wp-slimstat-ex/trunk/js
Files:
1 added
2 modified

Legend:

Unmodified
Added
Removed
  • wp-slimstat-ex/trunk/js/ajax-slimstat-jquery.js

    r403 r413  
    179179                                        // init sweetTitles 
    180180                                        if(typeof sweetTitles != 'undefined') { 
    181                                                 jQuery('#toolTip').remove(); 
     181                                                //jQuery('#toolTip').remove(); 
     182                                                sweetTitles.tip.remove(); 
    182183                                                sweetTitles.init(); 
    183184                                        } 
     
    187188        } 
    188189}; 
     190 
     191jQuery(document).ready(function() { 
     192        var historyHandler = jQuery.historyInit(SlimLoading.start); 
     193        var current_hash_string = jQuery.historyCurrentHash.replace(/^#/, ''); 
     194        if (current_hash_string != '') 
     195                var SlimStatLoader = '';//SlimStat.ajax(current_hash_string); 
     196        else  
     197                var SlimStatLoader = SlimStat.panel('1'); 
     198}); 
  • wp-slimstat-ex/trunk/js/sweetTitles.js

    r246 r413  
    7979                var access = ''; 
    8080                if ( anch.nodeName.toLowerCase() == 'a' ) { 
    81                         addy = (anch.href.length > 40 ? anch.href.toString().substring(0,40)+"..." : anch.href); 
     81                        addy = (anch.href.length > 62 ? anch.href.toString().substring(0,62)+"..." : anch.href); 
    8282                        var access = ( anch.accessKey ? ' <span>[alt+'+anch.accessKey+']</span> ' : '' ); 
    8383                } else {