Revert "refactor: move xmodule folder to root"

This commit is contained in:
Muhammad Umar Khan
2022-06-20 16:03:48 +05:00
committed by GitHub
parent 182eb39ed2
commit d890f06507
487 changed files with 339 additions and 216 deletions

View File

@@ -1,21 +0,0 @@
// Once generated by CoffeeScript 1.9.3, but now lives as pure JS
/* eslint-disable */
(function() {
var extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },
hasProp = {}.hasOwnProperty;
this.InlineDiscussion = (function(superClass) {
extend(InlineDiscussion, superClass);
function InlineDiscussion(element) {
this.el = $(element).find('.discussion-module');
this.view = new DiscussionInlineView({
el: this.el
});
}
return InlineDiscussion;
})(XModule.Descriptor);
}).call(this);