Page 1 of 1
stop rotation views by default
Posted: Thu Aug 23, 2012 7:37 am
by orcasa
I want to desactivate rotation on views tab, How can i do it?
Re: stop rotation views by default
Posted: Thu Aug 23, 2012 10:15 am
by scottwilkerson
This option isn't built into XI, but you can add it as a feature request on our tracker
http://tracker.nagios.com
That being said I can tell you how to do it. Add the following line to the end of
/usr/local/nagiosxi/html/includes/js/views.js
Code: Select all
setTimeout(function(){pause_view_rotation()},2000);
The down side of this is that it will get overwritten when you upgrade to a new version.
Re: stop rotation views by default
Posted: Tue Aug 28, 2012 3:24 am
by orcasa
Thanks man! it works!