Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Side by Side Diff: chrome/browser/resources/policy.js

Issue 11746012: [webui] whittle down a few more uses of old-style templateData (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 /** 5 /**
6 * This variable structure is here to document the structure that the template 6 * This variable structure is here to document the structure that the template
7 * expects to correctly populate the page. 7 * expects to correctly populate the page.
8 */ 8 */
9 var policyDataFormat = { 9 var policyDataFormat = {
10 // Whether any of the policies in 'policies' have a value. 10 // Whether any of the policies in 'policies' have a value.
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
241 */ 241 */
242 Policy.shouldDisplayPolicy = function(policy) { 242 Policy.shouldDisplayPolicy = function(policy) {
243 return $('toggle-unsent-policies').checked || policy.set; 243 return $('toggle-unsent-policies').checked || policy.set;
244 }; 244 };
245 245
246 /** 246 /**
247 * Initializes the page and loads the list of policies and the policy 247 * Initializes the page and loads the list of policies and the policy
248 * status data. 248 * status data.
249 */ 249 */
250 Policy.initialize = function() { 250 Policy.initialize = function() {
251 i18nTemplate.process(document, templateData);
Dan Beam 2013/01/03 04:55:23 why was this here?
Evan Stade 2013/01/03 05:31:23 i believe it was here because i18n_process was at
252 Policy.requestData(); 251 Policy.requestData();
253 252
254 // Set HTML event handlers. 253 // Set HTML event handlers.
255 $('fetch-policies-button').onclick = function(event) { 254 $('fetch-policies-button').onclick = function(event) {
256 this.disabled = true; 255 this.disabled = true;
257 Policy.triggerPolicyFetch(); 256 Policy.triggerPolicyFetch();
258 }; 257 };
259 258
260 $('toggle-unsent-policies').onchange = function(event) { 259 $('toggle-unsent-policies').onchange = function(event) {
261 Policy.getInstance().updatePolicyVisibility(); 260 Policy.getInstance().updatePolicyVisibility();
262 }; 261 };
263 262
264 $('search-field').onsearch = function(event) { 263 $('search-field').onsearch = function(event) {
265 Policy.getInstance().filterTable(this.value); 264 Policy.getInstance().filterTable(this.value);
266 }; 265 };
267 }; 266 };
268 267
269 // Export 268 // Export
270 return { 269 return {
271 Policy: Policy 270 Policy: Policy
272 }; 271 };
273 }); 272 });
274 273
275 var Policy = policies.Policy; 274 var Policy = policies.Policy;
276 275
277 // Get data and have it displayed upon loading. 276 // Get data and have it displayed upon loading.
278 document.addEventListener('DOMContentLoaded', policies.Policy.initialize); 277 document.addEventListener('DOMContentLoaded', policies.Policy.initialize);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698