This commit is contained in:
Jeffrey Morgan 2015-02-28 23:06:09 -05:00
Родитель 4795e323e2
Коммит bf0abc1d2c
2 изменённых файлов: 1 добавлений и 2 удалений

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

@ -29,7 +29,7 @@ var Setup = React.createClass({
SetupStore.removeListener(SetupStore.ERROR_EVENT, this.update);
},
handleRetry: function () {
metrics.track('Retried Setup');
metrics.track('Setup Retried');
SetupStore.retry();
},
handleOpenWebsite: function () {

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

@ -197,7 +197,6 @@ var SetupStore = assign(Object.create(EventEmitter.prototype), {
this.emit(this.STEP_EVENT);
}
yield this.wait();
metrics.track('Setup Retried');
}
}
}