Changes between Initial Version and Version 3 of Ticket #16035
- Timestamp:
- Sep 21, 2012, 2:46:57 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #16035
-
Property
Status
changed from
new
toclosed
-
Property
Resolution
changed from
to
fixed
-
Property
Milestone
changed from
tbd
to1.9
-
Property
Status
changed from
-
Ticket #16035 – Description
initial v3 1 1 dojo/dnd/move.parentConstrainedMoveable classname misses the 'dojo' prefix which breaks backward compat. 2 2 3 It's due to changes 28517in dojo/dnd/move.js, where the classname of the parentConstrainedMoveable class declaration misses its "dojo" prefix.3 It's due to changes [28517] in dojo/dnd/move.js, where the classname of the parentConstrainedMoveable class declaration misses its "dojo" prefix. 4 4 5 5 Should be: 6 6 7 {{{ 7 8 var parentConstrainedMoveable = declare("dojo.dnd.move.parentConstrainedMoveable", constrainedMoveable, { 9 }}} 8 10 9 11 see #14980 10 12 11 13 You can see the error by loading demos/cropper/demo.html that throws the following error: 14 15 {{{ 12 16 TypeError: d.dnd.move.parentConstrainedMoveable is not a constructor 13 17 http://../demos/cropper/src/Preview.js 14 18 Line 107 19 }}}