Skip to content

Commit d44a97c

Browse files
committed
clearup
1 parent 2a0f489 commit d44a97c

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/core/index.js

-5
Original file line numberDiff line numberDiff line change
@@ -325,10 +325,8 @@ export default class AwesomeSlider extends React.Component {
325325
}
326326

327327
startup() {
328-
console.log('STARTING UP');
329328
this.started = true;
330329
setTimeout(() => {
331-
console.log('STARTING UP TIMEOUT LOADED');
332330
this.goTo({
333331
index: this.props.selected,
334332
direction: true,
@@ -666,7 +664,6 @@ export default class AwesomeSlider extends React.Component {
666664
}
667665

668666
goTo({ index, direction, touch = false }) {
669-
console.log('GOTO CALLED');
670667
const nextIndex = this.getIndex(index);
671668
if (this.loading === true || index === this.index) {
672669
if (this.props.onTransitionReject) {
@@ -689,9 +686,7 @@ export default class AwesomeSlider extends React.Component {
689686
});
690687
return;
691688
}
692-
console.log('GOTO ACTIVATE ARROW');
693689
this.activateArrows(direction, () => {
694-
console.log('ARROWS ACTIVATED');
695690
this.chargeIndex(nextIndex, media => {
696691
this.renderedLoader = true;
697692
this.startAnimation(direction, media, ({ release = true }) => {

0 commit comments

Comments
 (0)