diff options
author | gorhill <rhill@raymondhill.net> | 2015-02-07 23:40:51 -0500 |
---|---|---|
committer | gorhill <rhill@raymondhill.net> | 2015-02-07 23:40:51 -0500 |
commit | ada85ca75eb16a93043b3f3a5a506a1f32042041 (patch) | |
tree | 7d67a3c5faed256c2c40ff0cc6d4f0f23ea01bd9 | |
parent | 6be9a8a9d35635037135bd049b0a2e095e1495e7 (diff) | |
download | uBlock-ada85ca75eb16a93043b3f3a5a506a1f32042041.zip uBlock-ada85ca75eb16a93043b3f3a5a506a1f32042041.tar.gz uBlock-ada85ca75eb16a93043b3f3a5a506a1f32042041.tar.bz2 |
this fixes https://github.com/gorhill/uBlock/issues/723#issuecomment-73395963
-rw-r--r-- | src/js/popup.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/js/popup.js b/src/js/popup.js index c97d7f6..29a3a16 100644 --- a/src/js/popup.js +++ b/src/js/popup.js @@ -256,7 +256,7 @@ var buildAllDynamicFilters = function() { // Remove and reuse all rows: the order may have changed, we can't just // reuse them in-place. - rowsToRecycle = uDom('#dynamicFilteringContainer > div:nth-of-type(7) ~ div').detach(); + rowsToRecycle = uDom('#dynamicFilteringContainer > div:nth-of-type(6) ~ div').detach(); var n = allHostnameRows.length; for ( var i = 0; i < n; i++ ) { |