Project

General

Profile

Actions

Bug #69417

closed

Inline Element doesn't open in Internet Explorer

Added by Marco Dinnbier over 8 years ago. Updated over 5 years ago.

Status:
Closed
Priority:
Must have
Category:
Backend User Interface
Target version:
-
Start date:
2015-08-31
Due date:
% Done:

100%

Estimated time:
TYPO3 Version:
7
PHP Version:
Tags:
Complexity:
Is Regression:
No
Sprint Focus:

Description

I've recognized an issue in Internet Explorer 11. An already existing inline element doesn't open. The console shows the error 'Object doesn't support property or method 'remove'.

The problem is on line 542 in typo3/sysext/backend/Resources/Public/JavaScript/jsfunc.inline.js

Instead this

$formObj[0].remove();
$valueObj[0].remove();

we must use this, to operate on Jquery Objects

$formObj.eq(0).remove();
$valueObj.eq(0).remove();

because IE doesn't support the native Javascript Method 'remove' at the moment


Files

fix_jsfunc.inline.js.patch (942 Bytes) fix_jsfunc.inline.js.patch Marco Dinnbier, 2015-08-31 00:31
method_remove_not _supported.PNG (34.6 KB) method_remove_not _supported.PNG Debugger IE11 Marco Dinnbier, 2015-09-03 19:42
Actions

Also available in: Atom PDF