use position:relative for collage

This commit is contained in:
DanDanDan 2014-02-15 15:02:16 +01:00
parent daeccdc65e
commit 62bb5dedd3

View file

@ -254,6 +254,7 @@ function makeCanvas(w,h) {
function render(model) {
var div = newElement('div');
div.style.overflow = 'hidden';
div.style.position = 'relative';
update(div, model, model);
return div;
}