! function (d, b, c, a) {
Velop.AssignmentQuestionAnswerHandler = function (e) {
this.__construct(e)
};
Velop.AssignmentQuestionAnswerHandler.prototype = {
__construct: function (e) {
this.clientAction = Velop.resolveClientAction("client", true);
this.sectionIdAction = XenForo.getAction("section");
this.$input = e;
this.assignmentQuestionControl = e.closest(".AssignmentQuestionAnswerHandler");
this.$input.change(d.context(this, "save"));
this.lastValue = null
},
...
I saw above script in a js file.
Question:
what does this line mean? __construct: function (e)
? does this equal to constructor: function (e)
? I saw __construct
in php file, but i never saw it is used in js file.