diff --git a/.gitignore b/.gitignore index 54da032..caf29c8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /res/css/.sass-cache /res/css/*.map +/screenshots/ diff --git a/README.md b/README.md index 9968074..da140f3 100644 --- a/README.md +++ b/README.md @@ -2,4 +2,4 @@ A writtenMorse and normal Morse converter for the web -**This is in development - it won't work so far** +**This is in an Alpha stage - use it on your own risk** diff --git a/index.html b/index.html index 15ccd93..d2935e1 100644 --- a/index.html +++ b/index.html @@ -20,12 +20,14 @@ - Morse Converter + Morse Converter Alpha
writtenMorse
Normal Morse
+
+
Report a Bug
About
diff --git a/js/web/web.js b/js/web/web.js index 40e4079..e96aa6b 100644 --- a/js/web/web.js +++ b/js/web/web.js @@ -60,6 +60,12 @@ function about(){ }) } +function bug(){ + $("body").fadeOut(dur, function callback(){ + window.location = "https://github.com/mmk2410/morse-converter-web/issues" + }) +} + window.onload = function() { var t = document.getElementsByTagName('textarea')[0]; var offset= !window.opera ? (t.offsetHeight - t.clientHeight) : (t.offsetHeight + parseInt(window.getComputedStyle(t, null).getPropertyValue('border-top-width'))) ; diff --git a/res/css/main.css b/res/css/main.css index f22ad69..f6c02cc 100644 --- a/res/css/main.css +++ b/res/css/main.css @@ -138,6 +138,10 @@ body { #writtenmorse { color: #03a9f4; } +.version { + font-style: italic; + font-size: 20px; } + @media screen and (max-width: 1400px) { .drawer { display: none; diff --git a/res/css/main.sass b/res/css/main.sass index 40526a7..9bdf9ec 100644 --- a/res/css/main.sass +++ b/res/css/main.sass @@ -159,6 +159,10 @@ body #writtenmorse color: $primary-color +.version + font-style: italic + font-size: 20px + @media screen and (max-width: 1400px) .drawer display: none