Changeset a7a136
- Timestamp:
- 04/27/2009 09:14:43 PM (16 years ago)
- Branches:
- 2.0.x, develop, extjs4-port, master
- Children:
- f811fc
- Parents:
- 200e348
- Location:
- deluge/ui/web
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
deluge/ui/web/css/deluge.css
r200e348 ra7a136 98 98 } 99 99 100 .x-deluge-add-torrent-name { 101 line-height: 20px; 102 } 103 104 .x-deluge-add-torrent-name-loading { 105 padding-left: 20px; 106 line-height: 20px; 107 background: url('/themes/default/tree/loading.gif') no-repeat 2px; 108 } 109 100 110 /* Add Url Window */ 101 111 .x-deluge-add-file, .x-btn .x-deluge-add-file { -
deluge/ui/web/index.html
r200e348 ra7a136 17 17 %endfor 18 18 </head> 19 <body></body> 19 <body> 20 <div style="background-image: url('/themes/default/tree/loading.gif');"></div> 21 </body> 20 22 </html> -
deluge/ui/web/js/Deluge.Add.js
r200e348 ra7a136 176 176 177 177 function torrentRenderer(value, p, r) { 178 if (r.data['info hash']) {179 return String.format('<div class="x- add-torrent-name">{0}</div>', value);178 if (r.data['info_hash']) { 179 return String.format('<div class="x-deluge-add-torrent-name">{0}</div>', value); 180 180 } else { 181 return String.format('<div class="x- add-torrent-name-loading">{0}</div>', value);181 return String.format('<div class="x-deluge-add-torrent-name-loading">{0}</div>', value); 182 182 } 183 183 }
Note:
See TracChangeset
for help on using the changeset viewer.