mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Fix issue which broke setup of Web UI unit tests
Web UI itself wasn't negatively affected. https://fedorahosted.org/freeipa/ticket/2897
This commit is contained in:
parent
36c345dd1d
commit
7d3aa96103
@ -194,7 +194,9 @@ var IPA = function() {
|
||||
],
|
||||
on_success: function(data, text_status, xhr) {
|
||||
IPA.ui.initialized = true;
|
||||
params.on_success.call(this, data, text_status, xhr);
|
||||
if (params.on_success) {
|
||||
params.on_success.call(this, data, text_status, xhr);
|
||||
}
|
||||
},
|
||||
on_error: params.on_error
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user