网格在模态弹出窗口内堆叠

时间:2016-02-04 11:55:43

标签: javascript twitter-bootstrap grid bootstrap-modal packery

我在bootstrap模式弹出窗口中有5个网格。

当我点击弹出按钮时,网格一个堆叠在另一个上。当我拖动一个网格时,整个5个网格正在积累。一旦完成。从下一次弹出按钮点击工作正常。

代码

/TestVersion1
   /input.f
   /otherfiles.f
   /output.lst
   /makefile

Fiddle Demo here

1 个答案:

答案 0 :(得分:0)

只需将代码置于bootstrap模态事件监听器中,因此在显示模式后

初始化
$(document).ready(function(){
    $('#myModal').on('shown.bs.modal', function () {
        // grid code
     });
});

Fiddle