aboutsummaryrefslogtreecommitdiffstats
path: root/js/dashboard.js
diff options
context:
space:
mode:
authorgorhill <rhill@raymondhill.net>2014-06-26 09:46:38 -0400
committergorhill <rhill@raymondhill.net>2014-06-26 09:46:38 -0400
commit059ff13407d8558273df88bbee65f9d311b6a5c0 (patch)
tree0ff1b8e97faef4d831268512fa1a27ef3617cf9e /js/dashboard.js
parenta58097b8cde5684389e5debe159092549e76bcba (diff)
downloaduBlock-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.js2
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);
});