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:
parent
fd21f6b1b6
commit
3cbad38c79
|
@ -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
|
||||
|
|
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue