mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 08:08:15 -05:00
Fix classroom student count
This commit is contained in:
parent
da90ab980e
commit
f067337635
1 changed files with 0 additions and 2 deletions
|
@ -127,7 +127,6 @@ module.exports = class TeacherClassView extends RootView
|
||||||
@render()
|
@render()
|
||||||
# Model/Collection events
|
# Model/Collection events
|
||||||
@listenTo @classroom, 'sync change update', ->
|
@listenTo @classroom, 'sync change update', ->
|
||||||
@removeDeletedStudents()
|
|
||||||
classCode = @classroom.get('codeCamel') or @classroom.get('code')
|
classCode = @classroom.get('codeCamel') or @classroom.get('code')
|
||||||
@state.set {
|
@state.set {
|
||||||
classCode: classCode
|
classCode: classCode
|
||||||
|
@ -144,7 +143,6 @@ module.exports = class TeacherClassView extends RootView
|
||||||
@listenTo @students, 'sync change update add remove reset', ->
|
@listenTo @students, 'sync change update add remove reset', ->
|
||||||
# Set state/props of things that depend on students?
|
# Set state/props of things that depend on students?
|
||||||
# Set specific parts of state based on the models, rather than just dumping the collection there?
|
# Set specific parts of state based on the models, rather than just dumping the collection there?
|
||||||
@removeDeletedStudents()
|
|
||||||
@calculateProgressAndLevels()
|
@calculateProgressAndLevels()
|
||||||
classStats = @calculateClassStats()
|
classStats = @calculateClassStats()
|
||||||
@state.set classStats: classStats if classStats
|
@state.set classStats: classStats if classStats
|
||||||
|
|
Loading…
Reference in a new issue