Merge branch 'master' of github.com:dpavlin/angular-mojolicious
[angular-mojolicious.git] / templates / conference / Registration.html.ep
index cd6ef62..34271f4 100644 (file)
@@ -5,15 +5,15 @@ if (typeof (console) === 'undefined') console = { debug: function() {} }; // moc
 function Registration($resource){
        this.master = {
                person: {
-                       name: '', surname: '', inst: '', email: '',
+                       name: '', surname: '', inst: '', email: ''
                },
                type: 'participant',
                work: {
                        title: '',
                        abstract: '',
-                       authors:[ { name:'', surname:'', inst:'', email:'' } ],
+                       authors:[ { name:'', surname:'', inst:'', email:'' } ]
                },
-               symposium: { organizers: [ {name:'', surname:'', inst:'', email:'' } ], work_nr: 1, },
+               symposium: { organizers: [ {name:'', surname:'', inst:'', email:'' } ], work_nr: 1 }
        };
        this.Registration = $resource( '/data/conference/Registration/:id', { id:'' } );
        this.Symposium = $resource( '/data/conference/Symposium/:id', { id:'' } );
@@ -79,7 +79,7 @@ console.debug('save_symposium', self.symposium );
 
                        self.last_saved = angular.copy(registration);
                });
-       },
+       }
 };
 
 angular.validator.max_length = function(input, len) {