fix(Viewer): use relative position on view container

This commit is contained in:
Nico Rehwaldt 2014-04-09 14:28:28 +02:00
parent d328454f68
commit a029c1528c
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ function Viewer(options) {
var parent = options.container || $('body');
var container = $('<div></div>').addClass('bjs-container').css({
position: 'absolute'
position: 'relative'
}).appendTo(parent);
_.forEach([ 'width', 'height' ], function(a) {