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

18 lines
436 B

  1. // Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
  2. // MIT License. See license.txt
  3. wn.ui.toolbar.Search = wn.ui.toolbar.SelectorDialog.extend({
  4. init: function() {
  5. this._super({
  6. title: wn._("Search"),
  7. execute: function(val) {
  8. wn.set_route("List", val);
  9. },
  10. help: wn._("Shortcut") + ": Ctrl+G"
  11. });
  12. // get new types
  13. this.set_values(wn.boot.profile.can_search.join(',').split(','));
  14. }
  15. });