fixed the resizable text area with IE problem fixed the ad space with IE problem merged the 7.2.0 and 7.1.4 change logs
62 lines
2.2 KiB
JavaScript
62 lines
2.2 KiB
JavaScript
|
|
/* Copyright (c) 2006 Yahoo! Inc. All rights reserved. */
|
|
|
|
/**
|
|
* @class a YAHHO.util.DDProxy implementation like DDMy, but the content
|
|
* channels are * not restricted to one column, and we drag a miniature
|
|
* representation of the * content channel rather than a frame of the channel.
|
|
*
|
|
* @extends YAHOO.util.DDProxy
|
|
* @constructor
|
|
* @param {String} id the id of the linked element
|
|
* @param {String} sGroup the group of related DragDrop objects
|
|
*/
|
|
YAHOO.example.DDMy2 = function(id, sGroup, config) {
|
|
|
|
if (id) {
|
|
this.init(id, sGroup, config);
|
|
this.initFrame();
|
|
this.logger = this.logger || YAHOO;
|
|
}
|
|
|
|
// Change the style of the frame to be a miniature representation of a
|
|
// content channel
|
|
var s = this.getDragEl().style;
|
|
s.background = "url(img/channel.png) 0 0 no-repeat";
|
|
s.height = "92px";
|
|
s.width = "100px";
|
|
// s.opacity = 0.66;
|
|
// s.filter = "alpha(opacity=66)";
|
|
|
|
// Specify that we do not want to resize the drag frame... we want to keep
|
|
// the drag frame the size of our miniature content channel image
|
|
//this.resizeFrame = false;
|
|
|
|
// Specify that we want the drag frame centered around the cursor rather
|
|
// than relative to the click location so that the miniature content
|
|
// channel appears in the location that was clicked
|
|
// this.centerFrame = true;
|
|
};
|
|
|
|
// YAHOO.example.DDMy2.prototype = new YAHOO.util.DDProxy();
|
|
YAHOO.extend(YAHOO.example.DDMy2, YAHOO.util.DDProxy);
|
|
|
|
YAHOO.example.DDMy2.prototype.onDragDrop = function(e, id) {
|
|
this.logger.log(this.id + " onDragDrop");
|
|
|
|
var el;
|
|
if ("string" == typeof id) {
|
|
el = YAHOO.util.DDM.getElement(id);
|
|
} else {
|
|
el = YAHOO.util.DDM.getBestMatch(id).getEl();
|
|
}
|
|
|
|
YAHOO.util.DDM.swapNode(this.getEl(), el);
|
|
};
|
|
|
|
YAHOO.example.DDMy2.prototype.endDrag = function(e) {
|
|
// we default behavior is to move the element to the end point when
|
|
// the drag is ended. In our case, we only want to move the element
|
|
// when it is dropped on another dd element. To override the default,
|
|
// we simply need to create an empty endDrag function.
|
|
};
|