You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
510 B
19 lines
510 B
<html>
|
|
<body style="text-align:center">
|
|
<h2>Click to force Bobinoscope date from your phone.</h2>
|
|
<br/>
|
|
<button class="fixdate">Fix Date</button>
|
|
</body>
|
|
<!-- Latest compiled and minified JQuery -->
|
|
<script src="/js/jquery-1.11.2.min.js"></script>
|
|
<script>
|
|
$(document).ready(function() {
|
|
$('.fixdate').click(function() {
|
|
$.get('/fixdate/'+((new Date()).getTime()), function(pResponse) {
|
|
console.log('DONE', pResponse);
|
|
alert('done', pResponse.error);
|
|
})
|
|
})
|
|
})
|
|
</script>
|
|
</html>
|