Commit ea48d5f5 authored by yann300's avatar yann300

fix warning if parent reverted

parent 899f381b
......@@ -34,7 +34,7 @@ function ButtonNavigator (_parent, _traceManager) {
this.view.querySelector('#reverted #parenthasthrown').style.display = 'none'
} else {
var k = callsPath.length - 2
while (k > 0) {
while (k >= 0) {
var parent = callsPath[k]
if (parent.reverted) {
this.revertionPoint = parent.return
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment