summaryrefslogtreecommitdiff
path: root/frontend/app/views/tile/forms/tile.constants.js
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2021-04-14 22:23:18 +0200
committerJules Laplace <julescarbon@gmail.com>2021-04-14 22:23:18 +0200
commit4931a78b1606359391066506cc3935f0f3e759e9 (patch)
tree56fcd2c00cc357069b25b21bfa6e909de82e8c36 /frontend/app/views/tile/forms/tile.constants.js
parent6b434e1996fdcc7b14819c32f7808475fa726339 (diff)
toggle popup
Diffstat (limited to 'frontend/app/views/tile/forms/tile.constants.js')
-rw-r--r--frontend/app/views/tile/forms/tile.constants.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/frontend/app/views/tile/forms/tile.constants.js b/frontend/app/views/tile/forms/tile.constants.js
index 273085c..322a081 100644
--- a/frontend/app/views/tile/forms/tile.constants.js
+++ b/frontend/app/views/tile/forms/tile.constants.js
@@ -80,11 +80,13 @@ export const NO_LINK = 0
export const EXTERNAL_LINK = -1
export const OPEN_POPUP_LINK = -2
export const CLOSE_POPUP_LINK = -3
+export const TOGGLE_POPUP_LINK = -4
export const PAGE_LIST_TOP_OPTIONS = [
{ name: NO_LINK, label: 'No link' },
{ name: EXTERNAL_LINK, label: 'External link' },
{ name: OPEN_POPUP_LINK, label: 'Open popup' },
{ name: CLOSE_POPUP_LINK, label: 'Close popup' },
+ { name: TOGGLE_POPUP_LINK, label: 'Toggle popup' },
{ name: -99, label: '──────────', disabled: true },
]