Patch #25114 » fix_context_menu_positioning.patch
| public/javascripts/context_menu.js (revision ) | ||
|---|---|---|
| 81 | 81 |
var menu = document.createElement("div");
|
| 82 | 82 |
menu.setAttribute("id", "context-menu");
|
| 83 | 83 |
menu.setAttribute("style", "display:none;");
|
| 84 |
document.getElementById("content").appendChild(menu);
|
|
| 84 |
document.getElementsByTagName("body")[0].appendChild(menu);
|
|
| 85 | 85 |
} |
| 86 | 86 |
} |
| 87 | 87 |
|