diff options
author | Anika Henke <anika@selfthinker.org> | 2013-02-16 16:58:31 +0000 |
---|---|---|
committer | Anika Henke <anika@selfthinker.org> | 2013-02-16 16:58:31 +0000 |
commit | 80faa902000c2bcf4602999e24a6016e1fafb997 (patch) | |
tree | 19b47ffb8323570342c311406d9a17d64692b778 | |
parent | 994211890f92c1678536b003354146fbb44b8f2f (diff) | |
download | rpg-80faa902000c2bcf4602999e24a6016e1fafb997.tar.gz rpg-80faa902000c2bcf4602999e24a6016e1fafb997.tar.bz2 |
corrected some inline documentation in template's js
-rw-r--r-- | lib/tpl/dokuwiki/script.js | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/lib/tpl/dokuwiki/script.js b/lib/tpl/dokuwiki/script.js index 3ed8dbabe..375500f78 100644 --- a/lib/tpl/dokuwiki/script.js +++ b/lib/tpl/dokuwiki/script.js @@ -1,11 +1,10 @@ /** * We handle several device classes based on browser width. - * see http://twitter.github.com/bootstrap/scaffolding.html#responsive * - * - desktop: 980+ - * - mobile: < 980 - * - tablet 481 - 979 (ostensibly for tablets in portrait mode) - * - phone <= 480 + * - desktop: > __tablet_width__ (as set in style.ini) + * - mobile: + * - tablet <= __tablet_width__ + * - phone <= __phone_width__ */ var device_class = ''; // not yet known var device_classes = 'desktop mobile tablet phone'; |