1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-25 17:25:20 +03:00

fix internal pointers for window resize handler in review code

This commit is contained in:
cTn 2014-11-22 08:28:56 +01:00
parent 92f085f561
commit fb1f22b248

View file

@ -34,8 +34,8 @@ $(document).ready(function () {
// handle window resize // handle window resize
var resizeHandler = function () { var resizeHandler = function () {
self.element.css({ self.element.css({
'top': (window.innerHeight - dialog.height()) / 3, 'top': (window.innerHeight - self.element.height()) / 3,
'left': (window.innerWidth - dialog.width()) / 2 'left': (window.innerWidth - self.element.width()) / 2
}); });
}; };