Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
recogito-js-1.7.1.zip | 2022-01-25 | 414.7 kB | |
README.md | 2022-01-25 | 1.4 kB | |
Version 1.7.1.tar.gz | 2022-01-25 | 274.5 kB | |
Version 1.7.1.zip | 2022-01-25 | 286.2 kB | |
Totals: 4 Items | 976.8 kB | 0 |
Behavior/feature additions
- Line breaks in comments are now properly displayed in read-only mode
- The default editor width is now reduced responsively on small-screen devices
widgets
anddisableEditor
are now available as instance fields that can be mutated at runtime- Added Russian UI translation
- Added support for annotating text inside iframes
API
-
Breaking change: tag bodies are now serialized differently when terms are from a semantic vocabulary (label + URI) (#94):
:::json { "type": "SpecificResource", "purpose": "tagging", "source": { "id": "http://vocab.getty.edu/aat/300010358", "label": "material" } }
Non-semantic terms are still represented in the same way, as a TextualBody
with a value
:
:::json
{
"type": "TextualBody",
"value": "material",
"purpose": "tagging",
"source": "http://vocab.getty.edu/aat/300010358"
}
Bugfixes
- Relationship annotation: fixes a regression that caused an error when confirming the relationship tag with the 'Ok' button (instead of hitting the Enter key) (#56)
- Fixes a bug in readOnly mode that caused a text selection to be cleared when right-clicking. (Thus making it impossible to copy text with right mouse click.) (#60)
- Bugfixes to support annotations that have only TextPositionSelectors, but no TextQuoteSelectors (#58)