選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

new.js 271 B

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. });