Ox.divideInt -> Ox.splitInt

This commit is contained in:
rolux 2012-06-25 16:37:45 +02:00
commit c5ddaec094
2 changed files with 7 additions and 4 deletions

View file

@ -529,8 +529,11 @@ pandora.getClipsQuery = function() {
}());
pandora.getFilterSizes = function() {
return Ox.divideInt(
window.innerWidth - pandora.user.ui.showSidebar * pandora.user.ui.sidebarSize - 1, 5
return Ox.splitInt(
window.innerWidth
- pandora.user.ui.showSidebar * pandora.user.ui.sidebarSize
- 1,
5
);
};