]> git.wh0rd.org - tt-rss.git/blobdiff - prefs.php
pngcrush.sh
[tt-rss.git] / prefs.php
index b1cdb0b49ab4808833911209d620ac0b5567060c..ef08ab86bd1ed684d3e0fece102f91499ec9be09 100644 (file)
--- a/prefs.php
+++ b/prefs.php
 <html>
 <head>
        <title>Tiny Tiny RSS : <?php echo __("Preferences") ?></title>
+    <meta name="viewport" content="initial-scale=1,width=device-width" />
 
        <script type="text/javascript">
                var __ttrss_version = "<?php echo VERSION ?>"
        </script>
 
        <?php echo stylesheet_tag("lib/dijit/themes/claro/claro.css"); ?>
-       <?php echo stylesheet_tag("css/layout.css"); ?>
 
        <?php if ($_SESSION["uid"]) {
-               $theme = get_pref( "USER_CSS_THEME", $_SESSION["uid"], false);
+               $theme = get_pref("USER_CSS_THEME", false, false);
                if ($theme && theme_valid("$theme")) {
                        echo stylesheet_tag(get_theme_path($theme));
                } else {
-                       echo stylesheet_tag("themes/default.php");
+                       echo stylesheet_tag("css/default.css");
                }
        }
        ?>
        } ?>
 
        <script type="text/javascript">
+               'use strict';
                require({cache:{}});
        <?php
-               require_once 'lib/jshrink/Minifier.php';
-
+               print get_minified_js(["functions.js", "prefs.js"]);
+       ?>
+       </script>
+       <script type="text/javascript">
+       <?php
                foreach (PluginHost::getInstance()->get_plugins() as $n => $p) {
                        if (method_exists($p, "get_prefs_js")) {
                                echo "try {";
@@ -92,8 +96,6 @@
                        }
                }
 
-               print get_minified_js(array("functions", "deprecated", "prefs"));
-
                init_js_translations();
        ?>
        </script>
 
 </head>
 
-<body id="ttrssPrefs" class="claro">
+<body class="claro ttrss_main ttrss_prefs">
 
 <div id="notify" class="notify"></div>
 <div id="cmdline" style="display : none"></div>
        <?php if (!defined('HIDE_VERSION')) { ?>
                 v<?php echo VERSION ?>
        <?php } ?>
-       &copy; 2005-<?php echo date('Y') ?>
-       <a class="insensitive" target="_blank"
-       href="http://fakecake.org/">Andrew Dolgov</a>
 </div> <!-- footer -->
 
 </div>