Merge pull request #1424 from mattermost/plt-1113

PLT-1113 Tutorial tip dots are now clickable
Этот коммит содержится в:
Christopher Speller
2015-11-16 08:51:46 -05:00
родитель 11f0054bba 7283282234
Коммит a3658a1427

Просмотреть файл

@@ -51,21 +51,22 @@ export default class TutorialTip extends React.Component {
const dots = [];
if (this.props.screens.length > 1) {
for (let i = 0; i < this.props.screens.length; i++) {
let className = 'circle';
if (i === this.state.currentScreen) {
dots.push(
<div
className='circle active'
key={'dotactive' + i}
/>
);
} else {
dots.push(
<div
className='circle'
key={'dotinactive' + i}
/>
);
className += ' active';
}
dots.push(
<a
href='#'
key={'dotactive' + i}
className={className}
onClick={(e) => { //eslint-disable-line no-loop-func
e.preventDefault();
this.setState({currentScreen: i});
}}
/>
);
}
}