2013-12-13 Sergio Martin <sergio.martin@artica.es>

* include/graphs/flot/pandora.flot.js: Fixed wrong
	condition of minimum height of menu.
	Incident #417



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@9221 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
zarzuelo 2013-12-13 09:22:15 +00:00
parent fd21f6b1b6
commit 3cbad38c79
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2013-12-13 Sergio Martin <sergio.martin@artica.es>
* include/graphs/flot/pandora.flot.js: Fixed wrong
condition of minimum height of menu.
Incident #417
2013-12-13 Sergio Martin <sergio.martin@artica.es>
* include/javascript/pandora.js: Added auto scroll

View File

@ -1048,7 +1048,7 @@ function adjust_menu(graph_id, plot, parent_height) {
var menu_height = '25';
if($('#menu_'+graph_id).height() != undefined || $('#menu_'+graph_id).height() < 20) {
if($('#menu_'+graph_id).height() != undefined && $('#menu_'+graph_id).height() > 20) {
menu_height = $('#menu_'+graph_id).height();
}