Actions
Bug #17205
closedT3 scriptaculous differs from oringal one
Start date:
2007-04-13
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.1
PHP Version:
5.2
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
dragndrop.js v1.7.0 line 566:
original:
if(this.lastValue != Sortable.serialize(this.element))
typo3:
//if(this.lastValue != Sortable.serialize(this.element))
this line is hardly needed to make nested sortables work!
There are some similiar issues in prototype
(issue imported from #M5420)
Updated by Oliver Hader about 17 years ago
Cannot confirm this. TYPO3 4.1.3 uses the original script.aculo.us sources. The code part you mentioned is correctly in the TYPO3 Core:
564: onEnd: function() {
565: Sortable.unmark();
566: if(this.lastValue != Sortable.serialize(this.element))
567: this.observer(this.element)
568: }
Actions