mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 16:36:37 +02:00
MDL-32106: fixed JS bug - when html element did not exist the script stopped
This commit is contained in:
parent
a81e8c47f1
commit
e30281eed5
1 changed files with 3 additions and 3 deletions
|
@ -657,13 +657,13 @@ M.core_filepicker.init = function(Y, options) {
|
|||
params['author'] = author.get('value');
|
||||
}
|
||||
|
||||
if (this.options.env == 'editor') {
|
||||
if (this.options.externallink && this.options.env == 'editor') {
|
||||
// in editor, images are stored in '/' only
|
||||
params.savepath = '/';
|
||||
// when image or media button is clicked
|
||||
if ( this.options.return_types != 1 ) {
|
||||
var linkexternal = Y.one('#linkexternal-'+client_id).get('checked');
|
||||
if (linkexternal) {
|
||||
var linkexternal = Y.one('#linkexternal-'+client_id);
|
||||
if (linkexternal && linkexternal.get('checked')) {
|
||||
params['linkexternal'] = 'yes';
|
||||
}
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue