Adapt contest logging
这个提交包含在:
		
							父节点
							
								
									5368ef25f3
								
							
						
					
					
						当前提交
						e0c35aa0cf
					
				
					共有  1 个文件被更改,包括 16 次插入 和 10 次删除
				
			
		|  | @ -68,19 +68,11 @@ function setSession(formdata) { | |||
| // realtime clock
 | ||||
| if ( ! manual ) { | ||||
| 	$(function ($) { | ||||
| 		var options = { | ||||
| 			utc: true, | ||||
| 			format: '%H:%M:%S' | ||||
| 		} | ||||
| 		$('.input_time').jclock(options); | ||||
| 		handleStart = setInterval(function() { getUTCTimeStamp($('.input_time')); }, 500); | ||||
| 	}); | ||||
| 
 | ||||
| 	$(function ($) { | ||||
| 		var options = { | ||||
| 			utc: true, | ||||
| 			format: '%d-%m-%Y' | ||||
| 		} | ||||
| 		$('.input_date').jclock(options); | ||||
| 		          handleDate = setInterval(function() { getUTCDateStamp($('.input_date')); }, 1000); | ||||
| 	}); | ||||
| } | ||||
| 
 | ||||
|  | @ -572,3 +564,17 @@ function pad (str, max) { | |||
| 	str = str.toString(); | ||||
| 	return str.length < max ? pad("0" + str, max) : str; | ||||
| } | ||||
| 
 | ||||
| function getUTCTimeStamp(el) { | ||||
| 	var now = new Date(); | ||||
| 	var localTime = now.getTime(); | ||||
| 	var utc = localTime + (now.getTimezoneOffset() * 60000); | ||||
| 	$(el).attr('value', ("0" + now.getUTCHours()).slice(-2)+':'+("0" + now.getUTCMinutes()).slice(-2)+':'+("0" + now.getUTCSeconds()).slice(-2)); | ||||
| } | ||||
| 
 | ||||
| function getUTCDateStamp(el) { | ||||
| 	var now = new Date(); | ||||
| 	var localTime = now.getTime(); | ||||
| 	var utc = localTime + (now.getTimezoneOffset() * 60000); | ||||
| 	$(el).attr('value', ("0" + now.getUTCDate()).slice(-2)+'-'+("0" + (now.getUTCMonth()+1)).slice(-2)+'-'+now.getUTCFullYear()); | ||||
| } | ||||
|  |  | |||
		正在加载…
	
		在新工单中引用