1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-02 01:21:21 +03:00

Fixing 'working' ovrerlay to fit document height.

This commit is contained in:
Chris Houseknecht 2014-02-04 19:04:41 +00:00
parent bbdfc3ea4f
commit 6d6ea293a4

View File

@ -451,8 +451,8 @@ angular.module('Utilities',['RestServices', 'Utilities'])
var x = (docw - spinnyw) / 2;
var y = (doch - spinnyh) / 2;
$('.overlay').css({
width: $('html').width(),
height: $('html').height()
width: $(document).width(),
height: $(document).height()
}).fadeIn();
$('.spinny').css({ top: y, left: x }).fadeIn(400);
}