OSDN Git Service

simple signup and login. Next, will modify note and worksapce api adding user info
[eos/zephyr.git] / client / app / components / saveFileModal / saveFileModal.controller.js
index 026f701..ff1b8c0 100644 (file)
@@ -3,6 +3,7 @@
 angular.module('zephyrApp')
 .controller('SaveFileModalController', function($scope, $modalInstance, Restangular) {
     var baseNoteSaving = Restangular.all('/api/noteCreation')
+
     $scope.save = function() {
         var note = {
             name: $scope.noteName
@@ -24,6 +25,7 @@ angular.module('zephyrApp')
             $modalInstance.close()
         })
     }
+
     $scope.close = function() {
         $modalInstance.close()
     }