0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-02 14:24:19 +01:00

remove options check in modal.js

This commit is contained in:
Jacob Thornton 2011-10-02 22:26:26 -07:00
parent b2b8a78971
commit f8be7a8052

View File

@ -57,12 +57,10 @@
this.$element = $(content)
.delegate('.close', 'click.modal', $.proxy(this.hide, this))
if ( options ) {
$.extend( this.settings, options )
$.extend( this.settings, options )
if ( this.settings.show ) {
this.show()
}
if ( this.settings.show ) {
this.show()
}
return this