diff options
Diffstat (limited to 'frontend/app/views/tile/forms')
| -rw-r--r-- | frontend/app/views/tile/forms/tile.constants.js | 2 | ||||
| -rw-r--r-- | frontend/app/views/tile/forms/tile.form.hyperlink.js | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/frontend/app/views/tile/forms/tile.constants.js b/frontend/app/views/tile/forms/tile.constants.js index d7dea31..273085c 100644 --- a/frontend/app/views/tile/forms/tile.constants.js +++ b/frontend/app/views/tile/forms/tile.constants.js @@ -64,6 +64,8 @@ export const CURSORS = [ export const MARQUEE_DIRECTIONS = [ { name: 'left', label: 'Left', }, { name: 'right', label: 'Right', }, + // { name: 'up', label: 'Up', }, + // { name: 'down', label: 'Down', }, ] export const UNITS = [ diff --git a/frontend/app/views/tile/forms/tile.form.hyperlink.js b/frontend/app/views/tile/forms/tile.form.hyperlink.js index b9fb038..b536e1c 100644 --- a/frontend/app/views/tile/forms/tile.form.hyperlink.js +++ b/frontend/app/views/tile/forms/tile.form.hyperlink.js @@ -21,10 +21,10 @@ export default function TileHyperlinkForm({ tile, pageList, popupList, cursors, // tile.target_page_id === CLOSE_POPUP_LINK // ) let cursor - console.log(tile.settings.cursor, tile.settings.custom_cursor_id) + // console.log(tile.settings.cursor, tile.settings.custom_cursor_id) if (tile.settings.cursor === 'custom' && tile.settings.custom_cursor_id) { cursor = cursors[tile.settings.custom_cursor_id] - console.log(cursor) + // console.log(cursor) } return ( <div> |
