stop rotation views by default
stop rotation views by default
I want to desactivate rotation on views tab, How can i do it?
-
scottwilkerson
- DevOps Engineer
- Posts: 19396
- Joined: Tue Nov 15, 2011 3:11 pm
- Location: Nagios Enterprises
- Contact:
Re: stop rotation views by default
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
The down side of this is that it will get overwritten when you upgrade to a new version.
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);Re: stop rotation views by default
Thanks man! it works!