From 39a9fc535ee217243b1c6a792724682196752368 Mon Sep 17 00:00:00 2001 From: Rolux Date: Fri, 8 Jan 2016 09:03:34 +0530 Subject: [PATCH] fix alignment of loading icon --- static/js/oml.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/oml.js b/static/js/oml.js index e86eb2d..8c62523 100644 --- a/static/js/oml.js +++ b/static/js/oml.js @@ -150,7 +150,7 @@ images.loadingIcon = document.createElement('img'); images.loadingIcon.setAttribute('id', 'loadingIcon'); images.loadingIcon.style.position = 'absolute'; - images.loadingIcon.style.left = 0; + images.loadingIcon.style.left = '16px'; images.loadingIcon.style.top = '256px' images.loadingIcon.style.right = 0; images.loadingIcon.style.bottom = 0;