diff --git a/src/app/debugger/debuggerUI/StepManager.js b/src/app/debugger/debuggerUI/StepManager.js
index 48c4daa70a..43f4b1f988 100644
--- a/src/app/debugger/debuggerUI/StepManager.js
+++ b/src/app/debugger/debuggerUI/StepManager.js
@@ -104,21 +104,6 @@ function StepManager (_parent, _traceManager) {
})
}
-StepManager.prototype.remove = function () {
- // used to stop listenning on event. bad and should be "refactored"
- this.slider.view = null
- this.slider = null
- this.buttonNavigator.view = null
- this.buttonNavigator = null
-}
-
-StepManager.prototype.render = function () {
- return yo`
- ${this.slider.render()}
- ${this.buttonNavigator.render()}
-
`
-}
-
StepManager.prototype.reset = function () {
this.slider.setValue(0)
this.currentStepIndex = 0
@@ -205,4 +190,19 @@ StepManager.prototype.changeState = function (step) {
this.event.trigger('stepChanged', [step])
}
+StepManager.prototype.remove = function () {
+ // used to stop listenning on event. bad and should be "refactored"
+ this.slider.view = null
+ this.slider = null
+ this.buttonNavigator.view = null
+ this.buttonNavigator = null
+}
+
+StepManager.prototype.render = function () {
+ return yo`
+ ${this.slider.render()}
+ ${this.buttonNavigator.render()}
+
`
+}
+
module.exports = StepManager