Welcome to mirror list, hosted at ThFree Co, Russian Federation.

export.js « js « source - github.com/lintest/fb2edit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0e9ae8d92d81101e8d70658d0fccf8ed4458665c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
var selection = document.getSelection();
var anchorNode = selection.anchorNode;
var focusNode = selection.focusNode;
(f = function(node) {
    if (node.nodeName === "#text") {
        if (anchorNode === node) handler.onAnchor(selection.anchorOffset);
        if (focusNode === node) handler.onFocus(selection.focusOffset);
        handler.onTxt(node.data);
    } else if (node.nodeName === "#comment") {
        handler.onCom(node.data);
    } else {
        if (node.nodeName !== "#document") {
            var atts = node.attributes;
            var count = atts.length;
            for (var i = 0; i < count; i++) handler.onAttr(atts[i].name, atts[i].value);
        }
        handler.onNew(node.nodeName);
        for (var n = node.firstChild; n !== null; n = n.nextSibling) f(n);
        handler.onEnd(node.nodeName);
    }
})(document);