Widget:Sandbox: Difference between revisions

Jump to navigation Jump to search
Matt Pijoan (talk | contribs)
No edit summary
Matt Pijoan (talk | contribs)
No edit summary
Line 598: Line 598:
submitRating("difficulty", score, exam.examQuestions[exam.currentQuestion].PageName)
submitRating("difficulty", score, exam.examQuestions[exam.currentQuestion].PageName)
},
},
score : getRating("difficulty", exam.examQuestions[exam.currentQuestion].PageName).d,
score : function(){return getRating("difficulty", exam.examQuestions[exam.currentQuestion].PageName).d},
hints : ['Very Poor', 'Poor', 'Average', 'Good', 'Very Good']
hints : ['Very Poor', 'Poor', 'Average', 'Good', 'Very Good']
});
});
Line 606: Line 606:
submitRating("yield", score, exam.examQuestions[exam.currentQuestion].PageName)
submitRating("yield", score, exam.examQuestions[exam.currentQuestion].PageName)
},
},
score : getRating("difficulty", exam.examQuestions[exam.currentQuestion].PageName).y,
score : function(){return  getRating("difficulty", exam.examQuestions[exam.currentQuestion].PageName).y},
hints : ['Very Poor', 'Poor', 'Average', 'Good', 'Very Good']
hints : ['Very Poor', 'Poor', 'Average', 'Good', 'Very Good']
});
});
Line 614: Line 614:
submitRating("quality", score, exam.examQuestions[exam.currentQuestion].PageName)
submitRating("quality", score, exam.examQuestions[exam.currentQuestion].PageName)
},
},
score : getRating("difficulty", exam.examQuestions[exam.currentQuestion].PageName).q,
score : function(){return getRating("difficulty", exam.examQuestions[exam.currentQuestion].PageName).q},
hints : ['Very Poor', 'Poor', 'Average', 'Good', 'Very Good']
hints : ['Very Poor', 'Poor', 'Average', 'Good', 'Very Good']
});
});

Revision as of 21:45, 20 February 2014