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:
parent
643c1b6103
commit
eb4c8dbc40
|
@ -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
|
||||
|
|
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue