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

17 lines
384 B

  1. // Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
  2. // MIT License. See license.txt
  3. wn.ui.toolbar.NewDialog = wn.ui.toolbar.SelectorDialog.extend({
  4. init: function() {
  5. this._super({
  6. title: wn._("New Record"),
  7. execute: function(val) {
  8. new_doc(val);
  9. },
  10. });
  11. // get new types
  12. this.set_values(profile.can_create.join(',').split(','));
  13. }
  14. });