OLD | NEW |
1 part of swarmlib; | |
2 | |
3 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
4 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
5 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
6 | 4 |
7 /** | 5 /** |
8 * An informational dialog that shows keyboard shortcuts and provides a | 6 * An informational dialog that shows keyboard shortcuts and provides a |
9 * link to the Dart language webpage. | 7 * link to the Dart language webpage. |
10 */ | 8 */ |
11 //TODO(efortuna): fix DialogView so it doesn't require the HTML passed to | 9 //TODO(efortuna): fix DialogView so it doesn't require the HTML passed to |
12 // the constructor. | 10 // the constructor. |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 ${cellStart} Next Category </th> | 73 ${cellStart} Next Category </th> |
76 </tr> | 74 </tr> |
77 <tr> | 75 <tr> |
78 ${cellStart} p </th> | 76 ${cellStart} p </th> |
79 ${cellStart} Previous Category </th> | 77 ${cellStart} Previous Category </th> |
80 </tr> | 78 </tr> |
81 | 79 |
82 </table>'''; | 80 </table>'''; |
83 } | 81 } |
84 } | 82 } |
OLD | NEW |