Changeset 1932
- Timestamp:
- 07/26/05 12:41:57 (5 years ago)
- Files:
-
- spinoffs/scriptaculous/CHANGELOG (modified) (1 diff)
- spinoffs/scriptaculous/src/dragdrop.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
spinoffs/scriptaculous/CHANGELOG
r1928 r1932 1 1 *SVN* 2 3 * Fixes a bug with Droppables not recognizing a drop if no hoverclass is given [thanks drewie] 2 4 3 5 * Fixes to ghosting marker, allow a predefined marker (element with id "dropmarker"). spinoffs/scriptaculous/src/dragdrop.js
r1928 r1932 175 175 activate: function(drop) { 176 176 if(this.last_active) this.deactivate(this.last_active); 177 if(drop.hoverclass) {177 if(drop.hoverclass) 178 178 Element.Class.add(drop.element, drop.hoverclass); 179 this.last_active = drop; 180 } 179 this.last_active = drop; 181 180 }, 182 181