a76be2dbbf450f63664b26630b09e2ddab1d849d
[ccsdk/features.git] /
1 (function( app ){
2
3         var ui = app.ns("ui");
4
5         ui.HelpPanel = ui.InfoPanel.extend({
6                 defaults: {
7                         ref: "",
8                         open: true,
9                         autoRemove: true,
10                         modal: false,
11                         width: 500,
12                         height: 450,
13                         title: i18n.text("General.Help")
14                 },
15                 init: function() {
16                         this._super();
17                         this.body.append(i18n.text(this.config.ref));
18                 }
19         });
20
21 })( this.app );