summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Markmann <tm@ayena.de>2012-03-21 18:41:58 (GMT)
committerKevin Smith <git@kismith.co.uk>2012-03-22 17:34:30 (GMT)
commite1c34f129275d03cc9a72dabb75d2c6d621f0e01 (patch)
tree604f755fc37e8a278bda05c82ff145b772e45217 /Swift/resources
parent85939c333765a4f028efa6f3037abd8de911ede8 (diff)
downloadswift-e1c34f129275d03cc9a72dabb75d2c6d621f0e01.zip
swift-e1c34f129275d03cc9a72dabb75d2c6d621f0e01.tar.bz2
Remove imageSwap() code from default theme. Should fix "Clicking message receipts warning icon replaces it with text."-bug.
License: This patch is BSD-licensed, see http://www.opensource.org/licenses/bsd-license.php
Diffstat (limited to 'Swift/resources')
-rwxr-xr-xSwift/resources/themes/Default/Template.html27
1 files changed, 0 insertions, 27 deletions
diff --git a/Swift/resources/themes/Default/Template.html b/Swift/resources/themes/Default/Template.html
index 85fa10f..e94701a 100755
--- a/Swift/resources/themes/Default/Template.html
+++ b/Swift/resources/themes/Default/Template.html
@@ -303,33 +303,6 @@
head.appendChild( documentFragment );
}
- //Swap an image with its alt-tag text on click
- document.onclick = imageCheck;
- function imageCheck() {
- node = event.target;
- if(node.tagName == 'IMG' && node.alt && node.className!="avatar") {
- a = document.createElement('a');
- a.setAttribute('onclick', 'imageSwap(this)');
- a.setAttribute('src', node.src);
- a.className = node.className;
- text = document.createTextNode(node.alt);
- a.appendChild(text);
- node.parentNode.replaceChild(a, node);
- }
- }
- function imageSwap(node) {
- shouldScroll = nearBottom();
-
- //Swap the image/text
- img = document.createElement('img');
- img.setAttribute('src', node.src);
- img.className = node.className;
- img.setAttribute('alt', node.firstChild.nodeValue);
- node.parentNode.replaceChild(img, node);
-
- alignChat(shouldScroll);
- }
-
//Align our chat to the bottom of the window. If true is passed, view will also be scrolled down
function alignChat(shouldScroll) {