16 lines
384 B
JavaScript
16 lines
384 B
JavaScript
// Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
|
|
// MIT License. See license.txt
|
|
|
|
wn.ui.toolbar.NewDialog = wn.ui.toolbar.SelectorDialog.extend({
|
|
init: function() {
|
|
this._super({
|
|
title: wn._("New Record"),
|
|
execute: function(val) {
|
|
new_doc(val);
|
|
},
|
|
});
|
|
|
|
// get new types
|
|
this.set_values(profile.can_create.join(',').split(','));
|
|
}
|
|
});
|