2014-01-28 Sergio Martin <sergio.martin@artica.es>
* mobile/operation/events.php: Fix event loading when the screen is bigger than the initial list height git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@9381 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
9f63b97ee0
commit
e24a7451a0
|
@ -1,3 +1,8 @@
|
||||||
|
2014-01-28 Sergio Martin <sergio.martin@artica.es>
|
||||||
|
|
||||||
|
* mobile/operation/events.php: Fix event loading when
|
||||||
|
the screen is bigger than the initial list height
|
||||||
|
|
||||||
2014-01-28 Sergio Martin <sergio.martin@artica.es>
|
2014-01-28 Sergio Martin <sergio.martin@artica.es>
|
||||||
|
|
||||||
* include/languages/ca.mo
|
* include/languages/ca.mo
|
||||||
|
|
|
@ -935,9 +935,10 @@ class Events {
|
||||||
add_rows(data);
|
add_rows(data);
|
||||||
|
|
||||||
//For large screens load the new events
|
//For large screens load the new events
|
||||||
if (document.documentElement.scrollHeight == document.documentElement.clientHeight) {
|
if (document.documentElement.scrollHeight <= document.documentElement.clientHeight) {
|
||||||
ajax_load_rows();
|
ajax_load_rows();
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
\"json\");
|
\"json\");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue