diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 76368bbd7b..3a3522a045 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2013-11-20 Sergio Martin + + * mobile/operation/events.php: Fix new events load condition + to be loaded only when down scroll + 2013-11-20 Sergio Martin * include/functions_visual_map.php: Fixed visual console links diff --git a/pandora_console/mobile/operation/events.php b/pandora_console/mobile/operation/events.php index 69c48a5842..faf126dab9 100644 --- a/pandora_console/mobile/operation/events.php +++ b/pandora_console/mobile/operation/events.php @@ -1036,7 +1036,7 @@ class Events { $(document).ready(function() { $(window).bind(\"scroll\", function () { if ($(this).scrollTop() + $(this).height() - >= ($(document).height() - 100) || true) { + >= ($(document).height() - 100)) { ajax_load_rows(); }