X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/ab76a5c2c90d386b3d5f40aee3d784b02cb92434..ca531bd353bd00ebe786c63df893f7f71167411b:/redakcja/static/js/wiki/view_annotations.js
diff --git a/redakcja/static/js/wiki/view_annotations.js b/redakcja/static/js/wiki/view_annotations.js
index 071e7ee6..76a0ae9e 100644
--- a/redakcja/static/js/wiki/view_annotations.js
+++ b/redakcja/static/js/wiki/view_annotations.js
@@ -40,6 +40,45 @@
AnnotationsPerspective.prototype = new $.wiki.Perspective();
+ AnnotationsPerspective.prototype.updateAnnotationIds = function(self){
+ self.annotationToAnchor = {};
+ $('#html-view .annotation-inline-box').each(
+ function(i, annoBox) {
+ var $annoBox = $(annoBox);
+ var $anchor = $("a[name|=anchor]", $annoBox);
+ var htmlContent = $('span', $annoBox).html();
+ // TBD: perhaps use a hash of htmlContent as key
+ self.annotationToAnchor[htmlContent] = $anchor.attr('name');
+ });
+ }
+
+ AnnotationsPerspective.prototype.goToAnnotation = function(self, srcNode){
+ var content = $(srcNode).html();
+ content = content.replace('>', '>', 'g').replace('<', '<', 'g').replace('&', '&', 'g');
+ xml2html({
+ xml: '