Author: pyaschenko
Date: 2008-09-25 10:32:54 -0400 (Thu, 25 Sep 2008)
New Revision: 10559
Modified:
trunk/ui/contextMenu/src/main/resources/org/richfaces/renderkit/html/scripts/context-menu.js
Log:
fixed bug: IE javascript error when show function called without context parameter
Modified:
trunk/ui/contextMenu/src/main/resources/org/richfaces/renderkit/html/scripts/context-menu.js
===================================================================
---
trunk/ui/contextMenu/src/main/resources/org/richfaces/renderkit/html/scripts/context-menu.js 2008-09-25
13:54:14 UTC (rev 10558)
+++
trunk/ui/contextMenu/src/main/resources/org/richfaces/renderkit/html/scripts/context-menu.js 2008-09-25
14:32:54 UTC (rev 10559)
@@ -81,7 +81,7 @@
div.style.zoom="1";
this.element.appendChild(div);
- var html = this.evaluator.invoke('getContent',
context||window).join('');
+ var html = this.evaluator.invoke('getContent', context||{}).join('');
new Insertion.Top(div, html);
this.menuContent = div;
Show replies by date