diff --git a/SimpleTaskSystem/SimpleTaskSystem.WebSpaAngular/App/Main/images/abp-logo.png b/SimpleTaskSystem/SimpleTaskSystem.WebSpaAngular/App/Main/images/abp-logo.png
deleted file mode 100644
index d25e6263d..000000000
Binary files a/SimpleTaskSystem/SimpleTaskSystem.WebSpaAngular/App/Main/images/abp-logo.png and /dev/null differ
diff --git a/SimpleTaskSystem/SimpleTaskSystem.WebSpaAngular/App/Main/views/task/new.js b/SimpleTaskSystem/SimpleTaskSystem.WebSpaAngular/App/Main/views/task/new.js
index 41ab0f5ae..9776eba06 100644
--- a/SimpleTaskSystem/SimpleTaskSystem.WebSpaAngular/App/Main/views/task/new.js
+++ b/SimpleTaskSystem/SimpleTaskSystem.WebSpaAngular/App/Main/views/task/new.js
@@ -21,15 +21,16 @@
});
vm.saveTask = function() {
- abp.ui.setBusy(null, {
- promise: taskService.createTask(vm.task)
- .success(function() {
- abp.notify.info(abp.utils.formatString(localize("TaskCreatedMessage"), vm.task.description));
- $location.path('/');
- })
- });
+ abp.ui.setBusy(
+ null,
+ taskService.createTask(
+ vm.task
+ ).success(function() {
+ abp.notify.info(abp.utils.formatString(localize("TaskCreatedMessage"), vm.task.description));
+ $location.path('/');
+ })
+ );
};
-
}
]);
})();
\ No newline at end of file
diff --git a/SimpleTaskSystem/SimpleTaskSystem.WebSpaAngular/SimpleTaskSystem.WebSpaAngular.csproj b/SimpleTaskSystem/SimpleTaskSystem.WebSpaAngular/SimpleTaskSystem.WebSpaAngular.csproj
index 3a86da86c..63f4c242a 100644
--- a/SimpleTaskSystem/SimpleTaskSystem.WebSpaAngular/SimpleTaskSystem.WebSpaAngular.csproj
+++ b/SimpleTaskSystem/SimpleTaskSystem.WebSpaAngular/SimpleTaskSystem.WebSpaAngular.csproj
@@ -179,7 +179,6 @@