clean ";"

This commit is contained in:
Jean-Baptiste Dominguez 2018-09-05 14:42:27 +09:00
commit 887270bfa9
2 changed files with 5 additions and 6 deletions

View file

@ -101,7 +101,7 @@ angular
Object.keys(params).forEach(function forNewParam(key) {
service.state[key] = params[key];
});
};
}
/**
* Pop state
@ -116,7 +116,7 @@ angular
} else {
clear();
}
};
}
/**
* Push state
@ -129,14 +129,14 @@ angular
service.previousStates.push(currentParams);
clearCurrent();
map(params);
};
}
/**
* Is empty stack
*/
function isEmpty() {
return service.previousStates.length == 0;
};
}
};
})();

View file

@ -144,6 +144,5 @@ angular
sendFlowStateService.pop();
sendFlowRouterService.goBack();
}
};
}
})();