Merge pull request #857 from ihavenoface/pull-request
Anonymize on stubs.
This commit is contained in:
commit
dfbd3ccde6
@ -1204,7 +1204,7 @@
|
|||||||
});
|
});
|
||||||
a = stub.firstChild;
|
a = stub.firstChild;
|
||||||
$.on(a, 'click', ReplyHiding.toggle);
|
$.on(a, 'click', ReplyHiding.toggle);
|
||||||
$.add(a, $.tn($('.desktop > .nameBlock', el).textContent));
|
$.add(a, $.tn(Conf['Anonymize'] ? 'Anonymous' : $('.desktop > .nameBlock', el).textContent));
|
||||||
if (Conf['Menu']) {
|
if (Conf['Menu']) {
|
||||||
menuButton = Menu.a.cloneNode(true);
|
menuButton = Menu.a.cloneNode(true);
|
||||||
$.on(menuButton, 'click', Menu.toggle);
|
$.on(menuButton, 'click', Menu.toggle);
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
master
|
master
|
||||||
|
- noface
|
||||||
|
Fix Anonymize not working on stubs.
|
||||||
- Mayhem
|
- Mayhem
|
||||||
Fix selection quoting on Opera.
|
Fix selection quoting on Opera.
|
||||||
Fix history bug with Persistent QR enabled on Chrome.
|
Fix history bug with Persistent QR enabled on Chrome.
|
||||||
|
|||||||
@ -954,7 +954,7 @@ ReplyHiding =
|
|||||||
innerHTML: '<a href="javascript:;"><span>[ + ]</span> </a>'
|
innerHTML: '<a href="javascript:;"><span>[ + ]</span> </a>'
|
||||||
a = stub.firstChild
|
a = stub.firstChild
|
||||||
$.on a, 'click', ReplyHiding.toggle
|
$.on a, 'click', ReplyHiding.toggle
|
||||||
$.add a, $.tn $('.desktop > .nameBlock', el).textContent
|
$.add a, $.tn if Conf['Anonymize'] then 'Anonymous' else $('.desktop > .nameBlock', el).textContent
|
||||||
if Conf['Menu']
|
if Conf['Menu']
|
||||||
menuButton = Menu.a.cloneNode true
|
menuButton = Menu.a.cloneNode true
|
||||||
$.on menuButton, 'click', Menu.toggle
|
$.on menuButton, 'click', Menu.toggle
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user