2013-11-20 Sergio Martin <sergio.martin@artica.es>

* mobile/operation/events.php: Fix new events load condition
	to be loaded only when down scroll



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@9104 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
zarzuelo 2013-11-20 10:03:31 +00:00
parent 643c1b6103
commit eb4c8dbc40
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2013-11-20 Sergio Martin <sergio.martin@artica.es>
* mobile/operation/events.php: Fix new events load condition
to be loaded only when down scroll
2013-11-20 Sergio Martin <sergio.martin@artica.es>
* include/functions_visual_map.php: Fixed visual console links

View File

@ -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();
}