Inffuse.project.save
Save all changes previusely made with in_batch=true to the cloud.
Syntax
Inffuse.project.save()
Example
Inffuse.project.set('name', 'John', true);
Inffuse.project.set('age', 32, true);
Inffuse.project.set('params', {
weight: 78,
height: 180,
alias: "Johnny"
}, true);
Inffuse.project.save()
.done(function(){
// Success
})
.fail(function(){
// Handle batch save failure
});