25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213
  1. wn.ui.toolbar.NewDialog = wn.ui.toolbar.SelectorDialog.extend({
  2. init: function() {
  3. this._super({
  4. title: "New Record",
  5. execute: function(val) {
  6. new_doc(val);
  7. },
  8. });
  9. // get new types
  10. this.set_values(profile.can_create.join(',').split(','));
  11. }
  12. });