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

View file

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