From d5d956c0acc861b77864a81d0565151c4a33fc13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20=C3=96sterreicher?= Date: Mon, 5 Nov 2007 16:41:54 +0000 Subject: [PATCH] --- content/DragAndDrop.js | 6 +++--- content/fasoverlay.js.php | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/content/DragAndDrop.js b/content/DragAndDrop.js index 4924a5d32..499a21129 100644 --- a/content/DragAndDrop.js +++ b/content/DragAndDrop.js @@ -173,7 +173,7 @@ var nsDragAndDrop = // cancel the drag. even if it's not, there's not much // we can do, so be silent. } - aEvent.preventBubble(); + aEvent.stopPropagation(); }, /** @@ -205,7 +205,7 @@ var nsDragAndDrop = aDragDropObserver.onDragOver(aEvent, flavourSet.flavourTable[flavour], this.mDragSession); - aEvent.preventBubble(); + aEvent.stopPropagation(); break; } } @@ -243,7 +243,7 @@ var nsDragAndDrop = var dropData = multiple ? transferData : transferData.first.first; aDragDropObserver.onDrop(aEvent, dropData, this.mDragSession); } - aEvent.preventBubble(); + aEvent.stopPropagation(); }, /** diff --git a/content/fasoverlay.js.php b/content/fasoverlay.js.php index bc953d9a4..4099a88c9 100644 --- a/content/fasoverlay.js.php +++ b/content/fasoverlay.js.php @@ -653,7 +653,7 @@ function StatistikPrintLVPlanung() //Fachbereich holen var col; - col = tree.columns ? tree.columns["kurzbz"] : "kurzbz"; + col = tree.columns ? tree.columns["fachbereich-treecol-kurzbz"] : "fachbereich-treecol-kurzbz"; var fachbereich_kurzbz=tree.view.getCellText(tree.currentIndex,col); var url = 'content/statistik/lvplanung.php?fachbereich_kurzbz='+fachbereich_kurzbz; }