AC-963 fixed spinny not aligning with visible viewport, I think.

This commit is contained in:
chris Houseknecht
2014-01-23 11:39:18 -05:00
parent 0ff5df27a3
commit 54d7884ac6
2 changed files with 2 additions and 5 deletions

View File

@@ -148,7 +148,7 @@ textarea {
/* Working... spinner */
.spinny {
display: none;
position: absolute;
position: fixed;
z-index: 2000;
width: 75px;
height: 75px;

View File

@@ -379,10 +379,7 @@ angular.module('Utilities',['RestServices', 'Utilities'])
width: $('html').width(),
height: $(document).height() + 200
}).fadeIn();
$('.spinny').css({
top: y,
left: x
}).fadeIn(400);
$('.spinny').css({ top: y, left: x }).fadeIn(400);
}
else if (directive == 'stop' && $rootScope.waiting){
$('.spinny, .overlay').fadeOut(400, function(){ $rootScope.waiting = false; });