fix #1276 - use registerLoadedCallback()

This commit is contained in:
Thomas Mueller 2013-02-01 00:33:14 +01:00
parent b20529ee44
commit 402263bd5c
1 changed files with 4 additions and 3 deletions

View File

@ -237,12 +237,14 @@ var UserList = {
});
}
}
}
};
$(document).ready(function () {
$('tbody tr:last').bind('inview', function (event, isInView, visiblePartX, visiblePartY) {
UserList.update();
OC.Router.registerLoadedCallback(function(){
UserList.update();
});
});
function setQuota(uid, quota, ready) {
@ -257,7 +259,6 @@ $(document).ready(function () {
);
}
$('select[multiple]').each(function (index, element) {
UserList.applyMultiplySelect($(element));
});