1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-06-17 01:35:00 +12:00

this fixes #24

This commit is contained in:
gorhill 2014-10-29 09:59:02 -04:00
parent 967707723a
commit 9838d009aa

View file

@ -626,6 +626,7 @@ function makeMatrixMetaRow(totals) {
var matrixRow = createMatrixRow().at(0).addClass('ro');
var cells = matrixRow.descendants('.matCell');
var contents = cells.at(0).addClass('t81').contents();
cells.at(0).prop('reqType', '*').prop('hostname', '');
contents.nodeAt(0).textContent = ' ';
contents.nodeAt(1).textContent = blacklistedHostnamesLabel.replace('{{count}}', totals[typeOffsets['*']]);
renderMatrixMetaCellType(cells.at(1), totals[typeOffsets.cookie]);