File tree 7 files changed +47
-8
lines changed
Resources/Public/JavaScript
7 files changed +47
-8
lines changed Original file line number Diff line number Diff line change
1
+ 3.0.2 - November 18, 2024
2
+ =========================
3
+
4
+ .. include :: ../../Includes.txt
5
+
6
+ .. only :: html
7
+
8
+ .. contents ::
9
+ :local:
10
+ :depth: 3
11
+
12
+
13
+ Important changes
14
+ -----------------
15
+
16
+ All Changes
17
+ -----------
18
+ This is a list of all changes in this release: ::
19
+
20
+ - [BUGFIX] fix eventHandler to show modal window for moving elements
Original file line number Diff line number Diff line change
1
+ 4.0.1 - November 18, 2024
2
+ =========================
3
+
4
+ .. include :: ../../Includes.txt
5
+
6
+ .. only :: html
7
+
8
+ .. contents ::
9
+ :local:
10
+ :depth: 3
11
+
12
+
13
+ Important changes
14
+ -----------------
15
+
16
+ All Changes
17
+ -----------
18
+ This is a list of all changes in this release: ::
19
+
20
+ - [BUGFIX] fix eventHandler to show modal window for moving elements
Original file line number Diff line number Diff line change @@ -20,7 +20,9 @@ List of versions
20
20
:titlesonly:
21
21
:glob:
22
22
23
+ 4-0-1
23
24
4-0-0
25
+ 3-0-2
24
26
3-0-1
25
27
3-0-0
26
28
2-0-5
Original file line number Diff line number Diff line change 11
11
edit-on-github =" Kephson/paste_reference"
12
12
typo3-core-preferred =" stable" />
13
13
<project title =" Paste reference"
14
- release =" 3 .0.0 "
15
- version =" 3 .0"
16
- copyright =" 2023 " />
14
+ release =" 4 .0.1 "
15
+ version =" 4 .0"
16
+ copyright =" 2024 " />
17
17
<inventory id =" t3tsref" url =" https://docs.typo3.org/typo3cms/TyposcriptReference/" />
18
18
<inventory id =" t3editors" url =" https://docs.typo3.org/typo3cms/EditorsTutorial/" />
19
19
<inventory id =" t3start" url =" https://docs.typo3.org/typo3cms/GettingStartedTutorial/" />
Original file line number Diff line number Diff line change @@ -149,7 +149,7 @@ Paste.activatePasteModal = function(element) {
149
149
} ,
150
150
{
151
151
text : TYPO3 . lang [ 'paste.modal.button.paste' ] || 'Move' ,
152
- btnClass : 'btn-' + Severity . getCssClass ( severity ) ,
152
+ btnClass : 'btn-' + top . TYPO3 . Severity . getCssClass ( severity ) ,
153
153
trigger : function ( evt , modal ) {
154
154
modal . hideModal ( ) ;
155
155
DragDrop . default . onDrop ( top . itemOnClipboardUid , element , null ) ;
Original file line number Diff line number Diff line change 11
11
'title ' => 'Paste reference for content elements ' ,
12
12
'description ' => 'Paste reference instead of copy for content elements ' ,
13
13
'category ' => 'plugin ' ,
14
- 'version ' => '4.0.0 ' ,
14
+ 'version ' => '4.0.1 ' ,
15
15
'constraints ' => [
16
16
'depends ' => [
17
- // 13.3.1 was a security release
18
17
'typo3 ' => '13.3.1-13.4.99 ' ,
19
18
],
20
19
'conflicts ' => [
Original file line number Diff line number Diff line change 6
6
use TYPO3 \CMS \Core \Utility \ExtensionManagementUtility ;
7
7
8
8
(static function () {
9
-
10
-
11
9
$ GLOBALS ['TYPO3_CONF_VARS ' ]['SC_OPTIONS ' ]['t3lib/class.t3lib_tcemain.php ' ]['processCmdmapClass ' ][] = DataHandler::class;
12
10
$ GLOBALS ['TYPO3_CONF_VARS ' ]['SC_OPTIONS ' ]['t3lib/class.t3lib_tcemain.php ' ]['processDatamapClass ' ][] = DataHandler::class;
13
11
$ GLOBALS ['TYPO3_CONF_VARS ' ]['SC_OPTIONS ' ]['t3lib/class.t3lib_tcemain.php ' ]['moveRecordClass ' ][] = DataHandler::class;
You can’t perform that action at this time.
0 commit comments