mirror of
https://github.com/moodle/moodle.git
synced 2025-07-22 23:01:21 +02:00
MDL-36609 javascript: ensure HTML element exists before attempting to perform JS functionality
This commit is contained in:
@@ -340,11 +340,16 @@ M.util.init_maximised_embed = function(Y, id) {
|
||||
if (Y.Lang.isString(el)) {
|
||||
el = Y.one('#' + el);
|
||||
}
|
||||
var val = el.getStyle(prop);
|
||||
if (val == 'auto') {
|
||||
val = el.getComputedStyle(prop);
|
||||
// Ensure element exists.
|
||||
if (el) {
|
||||
var val = el.getStyle(prop);
|
||||
if (val == 'auto') {
|
||||
val = el.getComputedStyle(prop);
|
||||
}
|
||||
return parseInt(val);
|
||||
} else {
|
||||
return 0;
|
||||
}
|
||||
return parseInt(val);
|
||||
};
|
||||
|
||||
var resize_object = function() {
|
||||
|
Reference in New Issue
Block a user