removing custom class .btn-primary, keep bootstrap

This commit is contained in:
Ezequiel Bergamaschi
2014-04-06 18:24:16 -03:00
parent 776f2e968d
commit a47232d6df
2 changed files with 6 additions and 43 deletions

View File

@@ -21,7 +21,12 @@ mindplot.widget.LinkEditor = new Class({
initialize:function (model) {
$assert(model, "model can not be null");
this.parent($msg("LINK"));
this.parent(
$msg("LINK"),
{
cancelButton: true
}
);
var panel = this._buildPanel(model);
this.setContent(panel);
},