Files
aowow/setup/tools/filegen/templates/global.js/positioning.js
Sarjuuk 6557e70d5c Template/Update (Part 47)
* split global.js into its components, so it can be reasonably processed by setup
 * make reputation requirements configurable
 * move Markup and Locale back into global.js (removed associated build scripts)
 * extend Icon to display iconId in lightbox popup
2025-09-25 16:01:14 +02:00

11 lines
192 B
JavaScript

/*
Global utility functions related to positioning
*/
function g_getViewport()
{
var win = $(window);
return new Rectangle(win.scrollLeft(), win.scrollTop(), win.width(), win.height());
}