mirror of
https://github.com/vichan-devel/vichan.git
synced 2025-02-08 23:39:46 +01:00
auto-reload.js: handle small screens
This commit is contained in:
parent
d41db75ed5
commit
602f7b5982
@ -139,7 +139,12 @@ $(document).ready(function(){
|
|||||||
|
|
||||||
var poll = function(manualUpdate) {
|
var poll = function(manualUpdate) {
|
||||||
stop_auto_update();
|
stop_auto_update();
|
||||||
$('#update_secs').text(_("Updating..."));
|
let isScreenSmall = window.matchMedia('(max-width: 48em)').matches;
|
||||||
|
if (isScreenSmall) {
|
||||||
|
$('#update_secs').text('...');
|
||||||
|
} else {
|
||||||
|
$('#update_secs').text(_('Updating...'));
|
||||||
|
}
|
||||||
|
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: document.location,
|
url: document.location,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user