Created
November 9, 2013 21:59
-
-
Save rickcnagy/7390598 to your computer and use it in GitHub Desktop.
Subclass for QuizInterface outline for qs-quizzes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function QuizEditor(sender, quiz) | |
{ | |
this.sender = sender; | |
this.quiz = quiz; | |
ClassUtil.inherit(QuizEditor, this, QuizInterface) | |
this.initialize(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment