mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
18 lines
532 B
JavaScript
18 lines
532 B
JavaScript
M.form_url = {};
|
|
|
|
M.form_url.init = function(Y, options) {
|
|
options.formcallback = M.form_url.callback;
|
|
if (!M.core_filepicker.instances[options.client_id]) {
|
|
M.core_filepicker.init(Y, options);
|
|
}
|
|
Y.on('click', function(e, client_id) {
|
|
e.preventDefault();
|
|
M.core_filepicker.instances[client_id].show();
|
|
}, '#filepicker-button-'+options.client_id, null, options.client_id);
|
|
|
|
};
|
|
|
|
M.form_url.callback = function (params) {
|
|
document.getElementById('id_externalurl').value = params.url;
|
|
};
|