()
| 931 | } |
| 932 | |
| 933 | function currentHyperlinkHref() { |
| 934 | var topHyperlink = _.last(complexFieldStack.filter(function(complexField) { |
| 935 | return complexField.type === "hyperlink"; |
| 936 | })); |
| 937 | return topHyperlink ? topHyperlink.href : null; |
| 938 | } |
| 939 | |
| 940 | function parseHyperlinkFieldCode(code) { |
| 941 | var result = /\s*HYPERLINK "(.*)"/.exec(code); |