25 lines
754 B
JavaScript
25 lines
754 B
JavaScript
define([
|
|
'jquery', 'js/views/settings/grading', 'js/models/settings/course_grading_policy'
|
|
], function($, GradingView, CourseGradingPolicyModel) {
|
|
'use strict';
|
|
return function(courseDetails, gradingUrl) {
|
|
var model, editor;
|
|
|
|
$('form :input')
|
|
.focus(function() {
|
|
$('label[for="' + this.id + '"]').addClass('is-focused');
|
|
})
|
|
.blur(function() {
|
|
$('label').removeClass('is-focused');
|
|
});
|
|
|
|
model = new CourseGradingPolicyModel(courseDetails, {parse: true});
|
|
model.urlRoot = gradingUrl;
|
|
editor = new GradingView({
|
|
el: $('.settings-grading'),
|
|
model: model
|
|
});
|
|
editor.render();
|
|
};
|
|
});
|