mirror of
https://github.com/Doodle3D/doodle3d-client.git
synced 2024-11-21 17:07:55 +01:00
Log statement fixes.
This commit is contained in:
parent
50d964e611
commit
0a9ceee49a
@ -41,7 +41,7 @@ function setSketchModified(_isModified) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function updateSketchButtonStates() {
|
function updateSketchButtonStates() {
|
||||||
console.log('sketch: isModified' + isModified + 'curSketch' + curSketch + 'sketches.length' + sketches.length);
|
console.log('sketch: isModified: ' + isModified + ', curSketch: ' + curSketch + ', sketches.length: ' + sketches.length);
|
||||||
|
|
||||||
if (isModified) {
|
if (isModified) {
|
||||||
btnSave.enable();
|
btnSave.enable();
|
||||||
@ -72,7 +72,7 @@ function loadSketch(_curSketch) {
|
|||||||
|
|
||||||
var id = sketches[curSketch];
|
var id = sketches[curSketch];
|
||||||
|
|
||||||
console.log('sketch: loadSketch curSketch',curSketch,'id',id);
|
console.log('sketch: loadSketch curSketch:' + curSketch + ', id: ' + id);
|
||||||
|
|
||||||
$.get(wifiboxURL + "/sketch", {id:id}, function(response) {
|
$.get(wifiboxURL + "/sketch", {id:id}, function(response) {
|
||||||
if (response.status=='success') {
|
if (response.status=='success') {
|
||||||
|
Loading…
Reference in New Issue
Block a user