Bootstrap modal not displaying

后端 未结 19 1878
逝去的感伤
逝去的感伤 2020-12-29 01:52

I\'ve copied and pasted the example code from twitter bootstrap to create a basic modal window in my Rails 3.2 app:


19条回答
  •  青春惊慌失措
    2020-12-29 02:22

    In order to get my modal to display when calling .modal('show')

    I changed:

    modal.on('loaded.bs.modal', function() 
    

    to:

    modal.on('shown.bs.modal', function() {
    

提交回复
热议问题