| 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 /* All the work we do onload. */ |
| 6 function onLoadWork() { |
| 7 // This is the javascript code that processes the template: |
| 8 var input = new JsEvalContext(templateData); |
| 9 var output = document.getElementById('t'); |
| 10 jstProcess(input, output); |
| 11 } |
| 12 |
| 13 document.addEventListener('DOMContentLoaded', onLoadWork); |
| 14 |
| OLD | NEW |