- fix [ 1293947 ] 6.7.3 Cannot use a second AssetProxy with IE, Stack overflow

This commit is contained in:
Wouter van Oijen 2005-09-17 22:21:21 +00:00
parent 23aae5f0b8
commit 8dc65ce3d5
2 changed files with 6 additions and 2 deletions

View file

@ -6,6 +6,7 @@
- Fixed Survey copy bug that prevented asset from appearing in clipboard.
- Fixed Survey copy bug that was preventing section data from being copied.
- Workedaround a bug for broken xml docs in Syndicated Content. (mwilson)
- fix [ 1293947 ] 6.7.3 Cannot use a second AssetProxy with IE, Stack overflow (Wouter van Oijen / ProcoliX)
6.7.4
- fix [ 1279861 ] POD errors in 6.7.3

View file

@ -1,8 +1,11 @@
var ie5=document.all&&document.getElementById
var contextMenu_items = new Array();
var contextMenu_old = (document.onclick) ? document.onclick : function () {};
document.onclick= function () {contextMenu_old();contextMenu_hide();};
if (contextMenu_old == undefined)
{
var contextMenu_old = (document.onclick) ? document.onclick : function () {};
document.onclick= function () {contextMenu_old();contextMenu_hide();};
}
function contextMenu_renderLeftClick(menuId,e) {
contextMenu_hide(e);