diff options
author | gorhill <rhill@raymondhill.net> | 2014-06-26 09:46:38 -0400 |
---|---|---|
committer | gorhill <rhill@raymondhill.net> | 2014-06-26 09:46:38 -0400 |
commit | 059ff13407d8558273df88bbee65f9d311b6a5c0 (patch) | |
tree | 0ff1b8e97faef4d831268512fa1a27ef3617cf9e /js/dashboard.js | |
parent | a58097b8cde5684389e5debe159092549e76bcba (diff) | |
download | uBlock-059ff13407d8558273df88bbee65f9d311b6a5c0.zip uBlock-059ff13407d8558273df88bbee65f9d311b6a5c0.tar.gz uBlock-059ff13407d8558273df88bbee65f9d311b6a5c0.tar.bz2 |
this fixes #16: don't mix with window.addEventListener('load')
Diffstat (limited to 'js/dashboard.js')
-rw-r--r-- | js/dashboard.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/dashboard.js b/js/dashboard.js index 12029fd..7caac69 100644 --- a/js/dashboard.js +++ b/js/dashboard.js @@ -45,7 +45,7 @@ $(function() { $(window).on('hashchange', onTabClickHandler); var hash = window.location.hash; if ( hash.length < 2 ) { - hash = '#settings'; + hash = '#thirdparty-filters'; } loadDashboardPanel(hash); }); |