<buttonid='play'title='jump to the next breakpoint'class='fa fa-step-forward'style=${ui.formatCss(style.button)}onclick=${function(){self.event.trigger('play')}}disabled=${this.playDisabled}>
<buttonid='jumpnextbreakpoint'title='jump to the next breakpoint'class='fa fa-step-forward'style=${ui.formatCss(style.button)}onclick=${function(){self.event.trigger('jumpNextBreakpoint')}}disabled=${this.jumpNextBreakpointDisabled}>
</button>
<divid='reverted'style="display:none">
<buttonid='jumptoexception'title='jump to exception'class='fa fa-exclamation-triangle'style=${ui.formatCss(style.button)}onclick=${function(){self.event.trigger('jumpToException',[self.revertionPoint])}}disabled=${this.jumpOutDisabled}>
@ -91,6 +91,7 @@ ButtonNavigator.prototype.reset = function () {
this.intoForwardDisabled=true
this.overForwardDisabled=true
this.jumpOutDisabled=true
this.jumpNextBreakpointDisabled=true
resetWarning(this)
}
@ -107,7 +108,7 @@ ButtonNavigator.prototype.stepChanged = function (step) {
self.reset()
console.log(error)
}else{
self.playDisabled=step>=length-1
self.jumpNextBreakpointDisabled=step>=length-1
self.intoForwardDisabled=step>=length-1
self.overForwardDisabled=step>=length-1
varstepOut=self.traceManager.findStepOut(step)
@ -126,7 +127,7 @@ ButtonNavigator.prototype.updateAll = function () {