Skip to content

Instantly share code, notes, and snippets.

View johanvalcoog's full-sized avatar

Johan Valcoog johanvalcoog

  • PuurApps
  • Sweden
View GitHub Profile
uploadFile: function(file) {
var self = this,
vehicle = this.get('controller.content'),
photo = Case.VehiclePhoto.createRecord();
console.log(file.data);
photo.set('name', file.name);
photo.set('imageData', file.data);
photo.set('vehicleId', this.get('controller.content.id'));