Skip to content

Commit

Permalink
CodeMirror Croquet debugging
Browse files Browse the repository at this point in the history
Try fixing change handling
  • Loading branch information
gbracha committed Aug 19, 2024
1 parent 512c18f commit 8f07e3c
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 9 deletions.
Binary file modified samples/CroquetCounterApp.vfuel
Binary file not shown.
Binary file modified samples/CroquetHopscotchDemo.vfuel
Binary file not shown.
Binary file modified samples/CroquetHopscotchFontDemo.vfuel
Binary file not shown.
Binary file modified samples/CroquetHopscotchGestureDemo.vfuel
Binary file not shown.
Binary file modified samples/CroquetTodoMVCApp.vfuel
Binary file not shown.
9 changes: 0 additions & 9 deletions samples/croquetpsoup.js
Original file line number Diff line number Diff line change
Expand Up @@ -3691,7 +3691,6 @@ class NewspeakCroquetPickerModel extends Croquet.Model {
this.subscribe(this.nsPickerId, 'input', this.input);
}
input(i){
console.log('Picker Input ' + i);
this.publish(this.nsPickerId, 'model_input', i);
}
}
Expand All @@ -3709,8 +3708,6 @@ class NewspeakCroquetColorPickerModel extends Croquet.Model {
}

pick(i){
console.log('Color Pick ' + i);
console.dir(i, { depth: null });
this.publish(this.nsColorPickerId, 'model_pick', i);
}
}
Expand All @@ -3726,8 +3723,6 @@ class NewspeakCroquetDatePickerModel extends Croquet.Model {
this.subscribe(this.nsDatePickerId, 'input', this.input);
}
input(i){
console.log('Date Input ' + i);
console.dir(i, { depth: null });
this.publish(this.nsDatePickerId, 'model_input', i);
}
}
Expand All @@ -3743,8 +3738,6 @@ class NewspeakCroquetTimePickerModel extends Croquet.Model {
this.subscribe(this.nsTimePickerId, 'input', this.input);
}
input(i){
console.log('Time picker Input ' + i);
console.dir(i, { depth: null });
this.publish(this.nsTimePickerId, 'model_input', i);
}
}
Expand All @@ -3761,8 +3754,6 @@ class NewspeakCroquetSliderModel extends Croquet.Model {
this.subscribe(this.nsSliderId, 'pick', this.pick);
}
pick(i){
console.log('Slider Pick ' + i);
console.dir(i, { depth: null });
this.publish(this.nsSliderId, 'model_pick', i);
}
}
Expand Down

0 comments on commit 8f07e3c

Please sign in to comment.