(element, options)
| 825 | * ====================== */ |
| 826 | |
| 827 | var Modal = function (element, options) { |
| 828 | this.options = options |
| 829 | this.$element = $(element) |
| 830 | .delegate('[data-dismiss="modal"]', 'click.dismiss.modal', $.proxy(this.hide, this)) |
| 831 | this.options.remote && this.$element.find('.modal-body').load(this.options.remote) |
| 832 | } |
| 833 | |
| 834 | Modal.prototype = { |
| 835 |