Do not load tooltips on touch screen only device.
This commit is contained in:
@@ -9,7 +9,7 @@ namespace CarCareTracker.Helper
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public static class StaticHelper
|
public static class StaticHelper
|
||||||
{
|
{
|
||||||
public static string VersionNumber = "1.3.6";
|
public static string VersionNumber = "1.3.7";
|
||||||
public static string DbName = "data/cartracker.db";
|
public static string DbName = "data/cartracker.db";
|
||||||
public static string UserConfigPath = "config/userConfig.json";
|
public static string UserConfigPath = "config/userConfig.json";
|
||||||
public static string GenericErrorMessage = "An error occurred, please try again later";
|
public static string GenericErrorMessage = "An error occurred, please try again later";
|
||||||
|
|||||||
@@ -125,5 +125,7 @@
|
|||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
$("[data-column='metric']").map((x, y) => new bootstrap.Tooltip(y));
|
if (!getDeviceIsTouchOnly()) {
|
||||||
|
$("[data-column='metric']").map((x, y) => new bootstrap.Tooltip(y));
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
Reference in New Issue
Block a user