Skip to content
Snippets Groups Projects

Flashcards revisited

Merged Andreas Gärtner requested to merge flashcards-revisited into master
Viewing commit 7fc5a8ea
Show latest version
3 files
+ 29
1
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -89,6 +89,7 @@ Ext.define('ARSnova.model.Session', {
sessionLeave: "arsnova/session/leave",
learningProgressOptions: "arsnova/session/learningprogress/options",
learningProgressChange: "arsnova/session/learningprogress/change",
flipFlashcards: "arsnova/session/flashcards/flip",
featureChange: "arsnova/session/features/change"
},
@@ -105,6 +106,11 @@ Ext.define('ARSnova.model.Session', {
this.fireEvent(this.events.learningProgressChange);
}, this);
ARSnova.app.socket.on(ARSnova.app.socket.events.flipFlashcards, function (flip) {
ARSnova.app.getController('FlashcardQuestions').flipFlashcards(flip);
this.fireEvent(this.events.flipFlashcards, flip);
}, this);
ARSnova.app.socket.on(ARSnova.app.socket.events.featureChange, function (features) {
var prevFeatures = ARSnova.app.getController('Feature').getActiveFeatures();
@@ -175,6 +181,10 @@ Ext.define('ARSnova.model.Session', {
return this.getProxy().lockFeedbackInput(sessionStorage.getItem("keyword"), lock, callbacks);
},
flipFlashcards: function (flip, callbacks) {
return this.getProxy().flipFlashcards(sessionStorage.getItem("keyword"), flip, callbacks);
},
getMyLearningProgress: function (sessionKeyword, callbacks) {
var me = this;
return this.getProxy().getMyLearningProgress(sessionKeyword, this.getLearningProgress(), {