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:
zarzuelo 2014-01-28 12:25:49 +00:00
parent 9f63b97ee0
commit e24a7451a0
2 changed files with 7 additions and 1 deletions

View File

@ -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>
* include/languages/ca.mo

View File

@ -935,9 +935,10 @@ class Events {
add_rows(data);
//For large screens load the new events
if (document.documentElement.scrollHeight == document.documentElement.clientHeight) {
if (document.documentElement.scrollHeight <= document.documentElement.clientHeight) {
ajax_load_rows();
}
},
\"json\");
}