I also noticed that when I click on view all in the events window, I get the following:
Code: Select all
function newWindow(Url,Name,Width,Height) { var Win = window.open(Url,Name,"resizable,scrollbars,width="+Width+",height="+Height); } function eventWindow(Url,Name,Width,Height) { var Win = window.open(Url,Name,"resizable,width="+Width+",height="+Height ); } function filterWindow(Url,Name) { var Win = window.open(Url,Name,"resizable,scrollbars,width=620,height=250"); } function timelineWindow(Url,Name) { var Win = window.open(Url,Name,"resizable,scrollbars,width=760,height=500"); } function closeWindow() { window.close(); // This is a hack. The only way to close an existing window is to try and open it! var filterWindow = window.open( "/zm/index.php?view=none", 'zmFilter', 'width=1,height=1' ); filterWindow.close(); } window.focus();
Going to reboot and see if it is anything silly going on.