mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-25 00:28:31 -05:00
10 lines
349 B
CoffeeScript
10 lines
349 B
CoffeeScript
|
ModalView = require 'views/core/ModalView'
|
||
|
template = require 'templates/courses/courses-not-assigned-modal'
|
||
|
|
||
|
module.exports = class CoursesNotAssignedModal extends ModalView
|
||
|
id: 'courses-not-assigned-modal'
|
||
|
template: template
|
||
|
|
||
|
initialize: (options) ->
|
||
|
_.assign(@, _.pick(options, 'selected', 'totalSpotsAvailable', 'unenrolledStudents'))
|