Reduced render limit on mobile.

This commit is contained in:
hastarin 2013-05-13 03:10:46 +10:00
parent cb66801d9f
commit cf5116d75c

View File

@ -95,4 +95,10 @@ window.runOnSmartphonesAfterBoot = function() {
}); });
}); });
}); });
// Force lower render limits for mobile
window.VIEWPORT_PAD_RATIO = 0.1;
window.MAX_DRAWN_PORTALS = 500;
window.MAX_DRAWN_LINKS = 200;
window.MAX_DRAWN_FIELDS = 100;
} }