OLD | NEW |
1 <link rel="import" href="../../../../packages/polymer/polymer.html"> | 1 <link rel="import" href="../../../../packages/polymer/polymer.html"> |
2 <link rel="import" href="nav_bar.html"> | |
3 | |
4 | 2 |
5 <polymer-element name="persistent-handles-page"> | 3 <polymer-element name="persistent-handles-page"> |
6 <template> | 4 <template> |
7 <link rel="stylesheet" href="css/shared.css"> | 5 <link rel="stylesheet" href="css/shared.css"> |
8 <style> | 6 <style> |
9 .table { | 7 .table { |
10 border-collapse: collapse!important; | 8 border-collapse: collapse!important; |
11 margin-bottom: 20px | 9 margin-bottom: 20px |
12 table-layout: fixed; | 10 table-layout: fixed; |
13 width: 100%; | 11 width: 100%; |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 <th on-click="{{changeSort}}" class="clickable" title="Object">{{ we
akPersistentHandlesTable.getColumnLabel(4) }}</th> | 96 <th on-click="{{changeSort}}" class="clickable" title="Object">{{ we
akPersistentHandlesTable.getColumnLabel(4) }}</th> |
99 </tr> | 97 </tr> |
100 </thead> | 98 </thead> |
101 <tbody id="weakPersistentHandlesTableBody"> | 99 <tbody id="weakPersistentHandlesTableBody"> |
102 </tbody> | 100 </tbody> |
103 </table> | 101 </table> |
104 <view-footer></view-footer> | 102 <view-footer></view-footer> |
105 </div> | 103 </div> |
106 </template> | 104 </template> |
107 </polymer-element> | 105 </polymer-element> |
OLD | NEW |