Skip to content

Commit 01ab545

Browse files
committed
removed slice feature from page and tutorial
1 parent 5d01bbc commit 01ab545

File tree

2 files changed

+0
-13
lines changed

2 files changed

+0
-13
lines changed

src/app/components/Tutorial.tsx

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -134,13 +134,6 @@ export default class Tutorial extends React.Component<tutorialProps, tutorialSta
134134
"<ul><li>Use button to lock Reactime to the target application's tab in the Chrome Browser</li></ul>",
135135
position: 'top',
136136
},
137-
{
138-
title: 'Split Button',
139-
element: '.split-button',
140-
intro:
141-
'<ul> <li>Use button to split Reactime into two windows in order to view multiple tabs simultaneously</li> </ul>',
142-
position: 'top',
143-
},
144137
{
145138
title: 'Download Button',
146139
element: '.export-button',

src/app/containers/ButtonsContainer.tsx

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,6 @@ function ButtonsContainer(): JSX.Element {
6565
{paused ? <FontAwesomeIcon icon={faUnlock} /> : <FontAwesomeIcon icon={faLock} />}
6666
{paused ? 'Unlock' : 'Lock'}
6767
</button>
68-
69-
<button className='split-button' type='button' onClick={() => dispatch(toggleSplit())}>
70-
{split ? <FontAwesomeIcon icon={faSquare} /> : <FontAwesomeIcon icon={faColumns} />}
71-
{split ? 'Unsplit' : 'Split'}
72-
</button>
73-
7468
<button className='export-button' type='button' onClick={() => exportHandler(snapshots)}>
7569
<FontAwesomeIcon icon={faDownload} />
7670
Download

0 commit comments

Comments
 (0)