Birnbaum2001
Geocacher
auf der cachedetailseite das feld "Final coordinate" füllen
			
			 
  
 
http://www.birnbaum2001.com/gccomment/GCComment: 
debug: Setting indexRepaired to new value: 77
http://www.birnbaum2001.com/gccomment/GCComment: 
debug: found URL: http://www.geocaching.com/my/default.aspx
http://www.birnbaum2001.com/gccomment/GCComment: 
debug: matched gccommentOnProfilePage
http://www.birnbaum2001.com/gccomment/GCComment: 
info: weaving comments into table...Timestamp: 26.10.2013 18:11:10
Error: NotFoundError: Node was not found
Source File: file:///.../AppData/Roaming/Mozilla/Firefox/Profiles/soxzdm4e.default/gm_scripts/GCComment/75959.user.js
Line: 3186Timestamp: 26.10.2013 18:11:11
Error: TypeError: tt is undefined
Source File: http://www.geocaching.com/my/default.aspx
Line: 0		target.width = '16';
		target.height = '16';
		target.alt = 'Comment available';
		target.setAttribute("guid", comment.guid);
		target.addEventListener('mouseover', function(evt) {
			var targetNode = evt.relatedTarget;
			if (!targetNode)
				return;
			var cacheLink, commValue;
			while (targetNode.nodeName.toLowerCase() != "td") {
				targetNode = targetNode.parentNode;
				if (!targetNode)
					break;
			}
			if (!targetNode || (targetNode.nodeName.toLowerCase() != "td"))
				return;
			var gccimg = $(targetNode).find("img[guid]");
			var guid = gccimg.attr("guid");
			commValue = doLoadCommentFromGUID(guid);
			if (commValue == null) {
				log('debug', 'could not load comment for guid ' + guid);
				return;
			}
			var commentTooltip = "";
			if ((commValue.lat != null) && (commValue.lng != null)) {
				commentTooltip = commentTooltip + "<strong>" + lang.myfinalcoords + "</strong><br/>"
						+ convertDec2DMS(commValue.lat, commValue.lng);
			}
			if (commValue.commentValue) {
				commentTooltip = commentTooltip + "<br/><br/><strong>" + lang.mycomment + "</strong><br/>"
						+ commValue.commentValue.replace(/\n/g, '<br/>');
			}
			unsafeWindow.tooltip.show(commentTooltip, 400);
		}, false);
		target.setAttribute('onmouseout', 'tooltip.hide();');