clean ";"
This commit is contained in:
parent
f7cde7a071
commit
887270bfa9
2 changed files with 5 additions and 6 deletions
|
|
@ -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;
|
||||||
};
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
})();
|
})();
|
||||||
|
|
@ -144,6 +144,5 @@ angular
|
||||||
sendFlowStateService.pop();
|
sendFlowStateService.pop();
|
||||||
sendFlowRouterService.goBack();
|
sendFlowRouterService.goBack();
|
||||||
}
|
}
|
||||||
};
|
}
|
||||||
|
|
||||||
})();
|
})();
|
||||||
Loading…
Add table
Add a link
Reference in a new issue