jshint errors

This commit is contained in:
Jared Tabor 2016-05-06 16:11:50 -04:00
parent 47b04f3a6f
commit fd40135d9d
2 changed files with 2 additions and 2 deletions

View File

@ -737,7 +737,7 @@ export default
return true;
};
scope.toggleLessEvents = function(state) {
scope.toggleLessEvents = function() {
if (!scope.lessEvents) {
$('#events-summary').slideUp(200);
scope.lessEvents = true;

View File

@ -110,7 +110,7 @@ export default
Wait('start');
Rest.setUrl(url);
Rest.post(params)
.success(function (data) {
.success(function () {
$state.go('notifications', {}, {reload: true});
Wait('stop');
})