diff --git a/index.html b/index.html
index 62ca99e..42a29ad 100644
--- a/index.html
+++ b/index.html
@@ -50,7 +50,7 @@
diff --git a/src/css/page.scss b/src/css/page.scss
index 609221e..0b72c25 100644
--- a/src/css/page.scss
+++ b/src/css/page.scss
@@ -24,6 +24,12 @@ body {
color: #222;
}
+ol,
+ul {
+ list-style: none;
+ padding: 0;
+}
+
/* body {
padding-top: 65px;
} */
@@ -982,4 +988,4 @@ ul.tab-nav li span.active.button {
-ms-user-select: none;
-webkit-user-select: none;
user-select: none;
-}
\ No newline at end of file
+}
diff --git a/src/js/controls/MobileDialog.css b/src/js/controls/MobileDialog.css
index be7d437..e1bc3f5 100644
--- a/src/js/controls/MobileDialog.css
+++ b/src/js/controls/MobileDialog.css
@@ -54,7 +54,7 @@
.popup .fm_overlay {
position: fixed;
- width: 300px;
+ width: 350px;
left: 50%;
margin-left: -150px;
top: 50%;
diff --git a/src/js/controls/MobileDialog.js b/src/js/controls/MobileDialog.js
index 0a4f2a5..a6ea5fc 100644
--- a/src/js/controls/MobileDialog.js
+++ b/src/js/controls/MobileDialog.js
@@ -92,14 +92,36 @@ export class MobileDialog {
// this.domNode.getElementsByClassName("popuptitle")[0].innerHTML = title || this.title;
- // if (!isHelp) {
- // //document.getElementById("pageinfo").style.display = "none";
- // this.pageinfo.style.display = "none";
- // }
- // else {
- // //document.getElementById("pageinfo").style.display = "block";
- // this.pageinfo.style.display = "block";
- // }
+ if (!isHelp) {
+ //document.getElementById("pageinfo").style.display = "none";
+ this.pageinfo.style.display = "none";
+ }
+ else {
+ this.pageinfo.innerHTML = '
About
' +
+ '
' +
+ "This project is using the following libraries, fonts & styles::" +
+ "
' +
+ '
';
+ this.pageinfo.style.display = "block";
+ }
this.dialogDiv.classList.add('show');
this.dialogDiv.classList.remove('hide');