- fix [ 1293947 ] 6.7.3 Cannot use a second AssetProxy with IE, Stack overflow
This commit is contained in:
parent
23aae5f0b8
commit
8dc65ce3d5
2 changed files with 6 additions and 2 deletions
|
|
@ -6,6 +6,7 @@
|
||||||
- Fixed Survey copy bug that prevented asset from appearing in clipboard.
|
- Fixed Survey copy bug that prevented asset from appearing in clipboard.
|
||||||
- Fixed Survey copy bug that was preventing section data from being copied.
|
- Fixed Survey copy bug that was preventing section data from being copied.
|
||||||
- Workedaround a bug for broken xml docs in Syndicated Content. (mwilson)
|
- 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
|
6.7.4
|
||||||
- fix [ 1279861 ] POD errors in 6.7.3
|
- fix [ 1279861 ] POD errors in 6.7.3
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,11 @@
|
||||||
var ie5=document.all&&document.getElementById
|
var ie5=document.all&&document.getElementById
|
||||||
var contextMenu_items = new Array();
|
var contextMenu_items = new Array();
|
||||||
|
|
||||||
var contextMenu_old = (document.onclick) ? document.onclick : function () {};
|
if (contextMenu_old == undefined)
|
||||||
document.onclick= function () {contextMenu_old();contextMenu_hide();};
|
{
|
||||||
|
var contextMenu_old = (document.onclick) ? document.onclick : function () {};
|
||||||
|
document.onclick= function () {contextMenu_old();contextMenu_hide();};
|
||||||
|
}
|
||||||
|
|
||||||
function contextMenu_renderLeftClick(menuId,e) {
|
function contextMenu_renderLeftClick(menuId,e) {
|
||||||
contextMenu_hide(e);
|
contextMenu_hide(e);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue