doodle3d-client/js/api/SketchAPI.js

21 lines
571 B
JavaScript

/*
* This file is part of the Doodle3D project (http://doodle3d.com).
*
* Copyright (c) 2013, Doodle3D
* This software is licensed under the terms of the GNU GPL v2 or later.
* See file LICENSE.txt or visit http://www.gnu.org/licenses/gpl.html for full license details.
*/
function SketchAPI() {
var className = 'SketchAPI';
this.load = function(id,success,fail) {
API.get('sketch/?id='+id,success,fail);
}
this.save = function(data,success,fail) {
console.log(className,'saving sketch',data);
API.post('sketch',{data:data},success,fail);
}
}