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 595: | Line 595: | ||
getRating(exam.examQuestions[exam.currentQuestion].PageName); | getRating(exam.examQuestions[exam.currentQuestion].PageName); | ||
} | } | ||
function answerClicked(event){ | function answerClicked(event){ | ||
Line 638: | Line 619: | ||
}, { | }, { | ||
ok : function (res) { | ok : function (res) { | ||
$("#star1").raty({ | |||
path : 'http://www.wikidoc.org/includes/raty/img/', | |||
click : function (score, event) { | |||
submitRating("difficulty", score, exam.examQuestions[exam.currentQuestion].PageName) | |||
}, | |||
score: res.wbrgetrating.difficulty, | |||
hints : ['Very Poor', 'Poor', 'Average', 'Good', 'Very Good'] | |||
}); | |||
$("#star2").raty({ | |||
path : 'http://www.wikidoc.org/includes/raty/img/', | |||
click : function (score, event) { | |||
submitRating("yield", score, exam.examQuestions[exam.currentQuestion].PageName) | |||
}, | |||
score: res.wbrgetrating.yield | |||
hints : ['Very Poor', 'Poor', 'Average', 'Good', 'Very Good'] | |||
}); | |||
$("#star3").raty({ | |||
path : 'http://www.wikidoc.org/includes/raty/img/', | |||
click : function (score, event) { | |||
submitRating("quality", score, exam.examQuestions[exam.currentQuestion].PageName) | |||
}, | |||
score: res.wbrgetrating.quality, | |||
hints : ['Very Poor', 'Poor', 'Average', 'Good', 'Very Good'] | |||
}); } | |||
}); | }); | ||
} | } |