fix for bug 58122 - find the anchor in the selection if there already is one

sr=ben, r=jag
This commit is contained in:
alecf%netscape.com 2001-03-08 07:59:17 +00:00
Родитель 01253d7390
Коммит 501b0ce99e
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -53,6 +53,12 @@ var contentAreaDNDObserver = {
if (domselection && !domselection.isCollapsed &&
domselection.containsNode(draggedNode,false))
{
var anchors = domselection.anchorNode.getElementsByTagName("a");
if (anchors.length > 0) {
draggedNode = anchors[0];
urlstring = draggedNode.href;
}
var privateSelection = domselection.QueryInterface(Components.interfaces.nsISelectionPrivate);
if (privateSelection)
{