|
From: <rc...@us...> - 2017-06-22 00:54:00
|
Revision: 7793
http://sourceforge.net/p/web-erp/reponame/7793
Author: rchacon
Date: 2017-06-22 00:53:58 +0000 (Thu, 22 Jun 2017)
Log Message:
-----------
Add meta viewport for initial-scale=1 for working css in small devices
Modified Paths:
--------------
trunk/doc/Change.log
trunk/includes/header.php
Modified: trunk/doc/Change.log
===================================================================
--- trunk/doc/Change.log 2017-06-21 04:02:03 UTC (rev 7792)
+++ trunk/doc/Change.log 2017-06-22 00:53:58 UTC (rev 7793)
@@ -1,5 +1,9 @@
webERP Change Log
+21/06/17 RChacon: Add meta viewport for initial-scale=1 (for working css in small devices).
+
+2017-06-20 4.14 release
+
19/06/17 Exson: Add menu.css to make the main menu workable in header.php.
19/06/17 Exson: Fixed the variable not existed error (Reported by Tim). Add a feature to add favorite script under main menu which idea originated from Tim's Kwamoja project.
19/06/17 Exson: Add a empty submit blocked feature to SupplierInvoice.php to avoid a empty invoice.
Modified: trunk/includes/header.php
===================================================================
--- trunk/includes/header.php 2017-06-21 04:02:03 UTC (rev 7792)
+++ trunk/includes/header.php 2017-06-22 00:53:58 UTC (rev 7793)
@@ -37,11 +37,11 @@
} else {
echo '<meta http-equiv="Content-Type" content="application/html; charset=utf-8" />';
}
-
+
echo '<link href="', $RootPath, '/css/menu.css" rel="stylesheet" type="text/css" />';
echo '<link href="', $RootPath, '/css/print.css" rel="stylesheet" type="text/css" media="print" />',
'<link href="', $RootPath, '/css/', $_SESSION['Theme'], '/default.css" rel="stylesheet" type="text/css" media="screen"/>',
-/* '<meta name="viewport" content="width=device-width, initial-scale=1">',//To tell the small device that the website is a responsive site (keep relationship between CSS pixels and device pixels).*/
+ '<meta name="viewport" content="width=device-width, initial-scale=1">',//To tell the small device that the website is a responsive site (keep relationship between CSS pixels and device pixels).
'<script type="text/javascript" src="', $RootPath, '/javascripts/MiscFunctions.js"></script>',
'<title>', $Title, '</title>',
'</head>',
|