mirror of
https://github.com/moodle/moodle.git
synced 2025-07-24 15:51:56 +02:00
Merge branch 'MDL-30660' of git://github.com/timhunt/moodle
This commit is contained in:
@@ -263,15 +263,28 @@ M.util.show_confirm_dialog = function(e, args) {
|
|||||||
|
|
||||||
if (target.test('a')) {
|
if (target.test('a')) {
|
||||||
window.location = target.get('href');
|
window.location = target.get('href');
|
||||||
|
|
||||||
} else if ((targetancestor = target.ancestor('a')) !== null) {
|
} else if ((targetancestor = target.ancestor('a')) !== null) {
|
||||||
window.location = targetancestor.get('href');
|
window.location = targetancestor.get('href');
|
||||||
|
|
||||||
} else if (target.test('input')) {
|
} else if (target.test('input')) {
|
||||||
targetform = target.ancestor('form');
|
targetform = target.ancestor('form');
|
||||||
if (targetform && targetform.submit) {
|
if (!targetform) {
|
||||||
targetform.submit();
|
return;
|
||||||
}
|
}
|
||||||
|
if (target.get('name') && target.get('value')) {
|
||||||
|
targetform.append('<input type="hidden" name="' + target.get('name') +
|
||||||
|
'" value="' + target.get('value') + '">');
|
||||||
|
}
|
||||||
|
targetform.submit();
|
||||||
|
|
||||||
|
} else if (target.get('tagName').toLowerCase() == 'form') {
|
||||||
|
// We cannot use target.test('form') on the previous line because of
|
||||||
|
// http://yuilibrary.com/projects/yui3/ticket/2531561
|
||||||
|
target.submit();
|
||||||
|
|
||||||
} else if (M.cfg.developerdebug) {
|
} else if (M.cfg.developerdebug) {
|
||||||
alert("Element of type " + target.get('tagName') + " is not supported by the M.util.show_confirm_dialog function. Use A or INPUT");
|
alert("Element of type " + target.get('tagName') + " is not supported by the M.util.show_confirm_dialog function. Use A, INPUT, or FORM");
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user