Procházet zdrojové kódy

Add mobile default javascript

pull/128/merge
Benjamin Southall před 6 roky
rodič
revize
eb10d4b011
1 změnil soubory, kde provedl 19 přidání a 0 odebrání
  1. +19
    -0
      js/mobile-default.js

+ 19
- 0
js/mobile-default.js Zobrazit soubor

@@ -0,0 +1,19 @@
/*
* mobile-style.js - adds some responsiveness to Tinyboard
* https://github.com/vichan-devel/Tinyboard/blob/master/js/mobile-style.js
*
* Released under the MIT license
* Copyright (c) 2014 Marcin Łabanowski <marcin@6irc.net>
*
* Usage:
* $config['api']['enabled'] = true;
* $config['additional_javascript'][] = 'js/jquery.min.js';
* $config['additional_javascript'][] = 'js/mobile-style.js';
*/

if(navigator.userAgent.match(/iPhone|iPod|iPad|Android|Opera Mini|Blackberry|PlayBook|Windows Phone|Tablet PC|Windows CE|IEMobile/i)) {
if (window.matchMedia('(max-device-width: 420px)').matches) {
localStorage.boardlisttinyalias = 'true';
localStorage.boardlisthideunderboards = 'true';
}
}

Načítá se…
Zrušit
Uložit