Actions
Defect #2390
closedJS-error in context_menu.js
Start date:
2008-12-23
Due date:
% Done:
0%
Estimated time:
Resolution:
Fixed
Affected version:
Description
In IE6, IE8 on /my/page when left-click on page:
Line: 51
Error: 'undefined' is null or not an object
For fix - context_menu.js:51
Was:
if (tr!=document && tr.hasClassName('hascontextmenu')) {
Need:
if (tr!=null && tr!=document && tr.hasClassName('hascontextmenu')) {
Updated by Jean-Philippe Lang almost 16 years ago
- Status changed from New to Closed
- Target version set to 0.8
- Resolution set to Fixed
Fix committed in r2178.
Actions