fix(draw-route): clear old model data when creating new model

Fixes #57
This commit is contained in:
Glavin Wiechert 2015-04-01 22:15:40 -03:00
Родитель b5d514a0a4
Коммит eaaab8ddda
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -9,7 +9,7 @@
###
angular.module('seaspongeApp')
.controller 'CreateController', ['$scope', '$location', 'model', 'config', ($scope, $location, model, config) ->
console.log('model', model);
$scope.title = "Example 1"
@ -42,6 +42,8 @@ angular.module('seaspongeApp')
# Validate input
# TODO
# Clear old model data
model.constructor()
# Save input
model.title = $scope.title
model.authors = $scope.authors