MDL-56210 behat: Pending and complete js is added by js_init_code

This commit is contained in:
Rajesh Taneja
2016-10-05 15:46:10 +08:00
parent 139dda66cc
commit e4f5b42015
-12
View File
@@ -23,9 +23,6 @@ if (typeof M.form.dependencyManager === 'undefined') {
this._hides = {};
this._dirty = {};
// Let behat know that JS is pending.
M.util.js_pending('mform-dependency-manager-' + this.get('form').get('id'));
// Setup event handlers.
Y.Object.each(this.get('dependencies'), function(value, i) {
var elements = this.elementsByName(i);
@@ -59,9 +56,6 @@ if (typeof M.form.dependencyManager === 'undefined') {
}, this);
this.updateAllDependencies();
// Let behat know that JS is complete.
M.util.js_complete('mform-dependency-manager-' + this.get('form').get('id'));
},
/**
@@ -594,12 +588,6 @@ M.form.initFormDependencies = function(Y, formid, dependencies) {
*/
M.form.updateFormState = function(formid) {
if (formid in M.form.dependencyManagers) {
// Let behat know that JS is pending.
M.util.js_pending('mform-dependency-manager-' + formid);
M.form.dependencyManagers[formid].updateAllDependencies();
// Let behat know that JS is complete.
M.util.js_complete('mform-dependency-manager-' + formid);
}
};