var BootstrapDialog = new Class({ initialize: function () { this._native = $('
'); }, show: function (title) { $assert(title, "message can not be null"); var modalDialog = $( ''); modalDialog.modal(); }, setContent:function (content){ this._native.append(content); } });