aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/linking/LinkEditor.tsx
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2022-11-18 17:26:17 -0500
committerbobzel <zzzman@gmail.com>2022-11-18 17:26:17 -0500
commitcdd1dd95c67fcb95914913bb5346c5117c0abc27 (patch)
tree23954efa3dc046ce1ad4ee5cd24d7f64cd2e7497 /src/client/views/linking/LinkEditor.tsx
parent4a0686ca3db91cf6e2c984c53f1ad4f2fea8de8b (diff)
migration of link properties to propertiesView
Diffstat (limited to 'src/client/views/linking/LinkEditor.tsx')
-rw-r--r--src/client/views/linking/LinkEditor.tsx16
1 files changed, 1 insertions, 15 deletions
diff --git a/src/client/views/linking/LinkEditor.tsx b/src/client/views/linking/LinkEditor.tsx
index 8c4d756d2..07c20dae4 100644
--- a/src/client/views/linking/LinkEditor.tsx
+++ b/src/client/views/linking/LinkEditor.tsx
@@ -327,21 +327,7 @@ export class LinkEditor extends React.Component<LinkEditorProps> {
<FontAwesomeIcon className="linkEditor-followingDropdown-icon" icon={this.openEffectDropdown ? 'chevron-up' : 'chevron-down'} size={'lg'} />
</div>
<div className="linkEditor-followingDropdown-optionsList" style={{ display: this.openEffectDropdown ? '' : 'none' }}>
- {[
- PresEffect.None,
- PresEffect.Zoom,
- PresEffect.Lightspeed,
- PresEffect.Fade,
- PresEffect.Flip,
- PresEffect.Rotate,
- PresEffect.Bounce,
- PresEffect.Roll,
- PresEffect.Left,
- PresEffect.Right,
- PresEffect.Center,
- PresEffect.Top,
- PresEffect.Bottom,
- ].map(effect => (
+ {[PresEffect.None, PresEffect.Zoom, PresEffect.Lightspeed, PresEffect.Fade, PresEffect.Flip, PresEffect.Rotate, PresEffect.Bounce, PresEffect.Roll].map(effect => (
<div className="linkEditor-followingDropdown-option" onPointerDown={() => this.changeEffect(effect.toString())}>
{effect.toString()}
</div>