| OLD | NEW |
| (Empty) |
| 1 <!DOCTYPE HTML> | |
| 2 <!-- Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
| 3 -- Use of this source code is governed by a BSD-style license that can be | |
| 4 -- found in the LICENSE file. --> | |
| 5 <html> | |
| 6 <head> | |
| 7 <title>Garrulous</title> | |
| 8 <link rel="stylesheet" type="text/css" href="style.css" /> | |
| 9 </head> | |
| 10 <body> | |
| 11 <button id="close"></button> | |
| 12 <div id="templates"> | |
| 13 <div class="section"><h1><span/></h1></div> | |
| 14 <div class="event"></div> | |
| 15 <button><img src="images/white-64x64.png"></button> | |
| 16 </div> | |
| 17 <div> | |
| 18 <h1><span>Priority</span></h1> | |
| 19 <form name="priority" id="priority"> | |
| 20 <label><input type="radio" name="priority" value="-2">-2</label> | |
| 21 <label><input type="radio" name="priority" value="-1">-1</label> | |
| 22 <label> | |
| 23 <input type="radio" name="priority" value="0" checked="true">0 | |
| 24 </label> | |
| 25 <label><input type="radio" name="priority" value="1">1</label> | |
| 26 <label><input type="radio" name="priority" value="2">2</label> | |
| 27 </div> | |
| 28 </div> | |
| 29 <div id="sections"></div> | |
| 30 <div id="events"> | |
| 31 <h1><span>Events</span></h1> | |
| 32 <div id="events-scroll"></div> | |
| 33 <div id="events-fade"></div> | |
| 34 </div> | |
| 35 </body> | |
| 36 </html> | |
| OLD | NEW |