OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 cr.define('options', function() { | |
6 const OptionsPage = options.OptionsPage; | |
7 | |
8 ///////////////////////////////////////////////////////////////////////////// | |
9 // HandlerOptions class: | |
10 | |
11 /** | |
12 * Encapsulated handling of handler options page. | |
13 * @constructor | |
14 */ | |
15 function HandlerOptions() { | |
16 this.activeNavTab = null; | |
17 OptionsPage.call(this, | |
18 'handlers', | |
19 templateData.handlersPageTabTitle, | |
20 'handler-options'); | |
21 } | |
22 | |
23 cr.addSingletonGetter(HandlerOptions); | |
24 | |
25 HandlerOptions.prototype = { | |
26 __proto__: OptionsPage.prototype, | |
27 | |
28 /** | |
29 * The handlers list. | |
30 * @type {DeletableItemList} | |
31 * @private | |
32 */ | |
33 handlersList_: null, | |
34 | |
35 /** @inheritDoc */ | |
36 initializePage: function() { | |
37 OptionsPage.prototype.initializePage.call(this); | |
38 | |
39 this.createHandlersList_(); | |
40 }, | |
41 | |
42 /** | |
43 * Creates, decorates and initializes the handlers list. | |
44 * @private | |
45 */ | |
46 createHandlersList_: function() { | |
47 this.handlersList_ = $('handlers-list'); | |
48 options.HandlersList.decorate(this.handlersList_); | |
49 this.handlersList_.autoExpands = true; | |
50 }, | |
51 }; | |
52 | |
53 /** | |
54 * Sets the list of handlers shown by the view. | |
55 * @param handlers to be shown in the view. | |
56 */ | |
57 HandlerOptions.setHandlers = function(handlers) { | |
58 $('handlers-list').setHandlers(handlers); | |
59 }; | |
60 | |
61 // Export | |
Evan Stade
2011/05/20 22:01:28
not sure this comment is necessary, but if you wan
koz (OOO until 15th September)
2011/05/20 22:19:56
I probably got this comment from another *_options
| |
62 return { | |
63 HandlerOptions: HandlerOptions | |
64 }; | |
65 | |
Evan Stade
2011/05/20 22:01:28
remove this newline
koz (OOO until 15th September)
2011/05/20 22:19:56
Done.
| |
66 }); | |
OLD | NEW |