diff options
| author | bobzel <zzzman@gmail.com> | 2025-05-19 19:43:28 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2025-05-19 19:43:28 -0400 |
| commit | 51b4b64eae4749542590785bca9d33d3ccdded69 (patch) | |
| tree | eb7e572d864b24a179997bb9038aecf403e73f43 /src/client/views/nodes/formattedText/marks_rts.ts | |
| parent | 9eb4669477eb03fb404b11eec41e09a93ec15425 (diff) | |
fixed text boxes to calculate height correctly. removed usertag modification time in text. fixed masonry and stacking views with pivots.
Diffstat (limited to 'src/client/views/nodes/formattedText/marks_rts.ts')
| -rw-r--r-- | src/client/views/nodes/formattedText/marks_rts.ts | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/client/views/nodes/formattedText/marks_rts.ts b/src/client/views/nodes/formattedText/marks_rts.ts index b7dae1ca3..333ee6be8 100644 --- a/src/client/views/nodes/formattedText/marks_rts.ts +++ b/src/client/views/nodes/formattedText/marks_rts.ts @@ -330,20 +330,6 @@ export const marks: { [index: string]: MarkSpec } = { return ['span', { class: 'UM-' + uid + remote + ' UM-min-' + min + ' UM-hr-' + hr + ' UM-day-' + day }, 0]; }, }, - // the id of the user who entered the text - user_tag: { - attrs: { - userid: { default: '' }, - modified: { default: 'when?' }, // 1 second intervals since 1970 - tag: { default: '' }, - }, - group: 'inline', - inclusive: false, - toDOM: node => { - const uid = node.attrs.userid.replace('.', '').replace('@', ''); - return ['span', { class: 'UT-' + uid + ' UT-' + node.attrs.tag }, 0]; - }, - }, // :: MarkSpec Code font mark. Represented as a `<code>` element. code: { |
