Skip to content

Commit

Permalink
Fixed a bug that caused by incorrect content generating order.
Browse files Browse the repository at this point in the history
  • Loading branch information
nakupanda committed Feb 12, 2014
1 parent dacbd1e commit 2861d30
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions examples/assets/bootstrap-dialog/js/bootstrap-dialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -645,14 +645,14 @@ var BootstrapDialog = null;
});
this.handleModalEvents();
this.setRealized(true);
this.updateTitle();
this.updateMessage();
this.updateClosable();

return this;
},
open: function() {
!this.isRealized() && this.realize();
this.updateTitle();
this.updateMessage();
this.updateClosable();
this.getModal().modal('show');
this.setOpened(true);

Expand Down
Loading

0 comments on commit 2861d30

Please sign in to comment.