Changeset 152
- Timestamp:
- 10/21/07 23:18:33 (15 months ago)
- Location:
- trunk
- Files:
-
- 4 modified
-
CHANGELOG (modified) (1 diff)
-
js/hellaworld.php (modified) (1 diff)
-
style/main.css (modified) (1 diff)
-
templates/default.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/CHANGELOG
r151 r152 19 19 * Fixed a bug where only one processing item was showing after an auto 20 20 refresh when HellaNZB was processing multiple items. [ticket:14] 21 22 * Added the ability to manually call the auto-refresh feature. 21 23 22 24 1.8 -
trunk/js/hellaworld.php
r151 r152 148 148 } 149 149 150 function refreshNow() { 151 $.getJSON('index.php?refresher=1', function(json) { updateData(json); }); 152 } 153 150 154 function showstatus(obj) { 151 155 if (obj.options[obj.selectedIndex].value > 1) { -
trunk/style/main.css
r102 r152 255 255 display: inline; 256 256 float: right; 257 margin-top: 2px;258 257 } 259 258 -
trunk/templates/default.php
r143 r152 137 137 <div id="controls"> 138 138 <span id="refresher"> 139 <input type="checkbox" name="refresh" id="refresh" onclick="if (this.checked) { createCookie('HHRefresh', 1, 30);startRefresher(); } else { createCookie('HHRefresh', 0, 30);stopRefresher(); }" /> <label for="refresh" class="refresher"><?php echo _('Refresh every 15 seconds'); ?></label>139 <input type="checkbox" name="refresh" id="refresh" onclick="if (this.checked) { createCookie('HHRefresh', 1, 30);startRefresher(); } else { createCookie('HHRefresh', 0, 30);stopRefresher(); }" /> <label for="refresh" class="refresher"><?php echo _('Refresh every 15 seconds'); ?></label> <input type="button" value="<?php echo _('Refresh Now'); ?>" onclick="refreshNow();" /> 140 140 </span> 141 141 <?php if ($c->queueLength > 0): ?>
