Alpha release
This commit is contained in:
parent
954f57f221
commit
0e7a53c678
6 changed files with 19 additions and 2 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,2 +1,3 @@
|
|||
/res/css/.sass-cache
|
||||
/res/css/*.map
|
||||
/screenshots/
|
||||
|
|
|
@ -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**
|
||||
|
|
|
@ -20,12 +20,14 @@
|
|||
<body>
|
||||
<span class="actionbar">
|
||||
<img src="./res/img/menu.svg" class="menuicon" onclick="drawer()"/>
|
||||
Morse Converter
|
||||
Morse Converter <span class="version">Alpha</span>
|
||||
</span>
|
||||
<div class="drawer">
|
||||
<img src="res/img/drawergraphic.png" class="drawerimg"/>
|
||||
<div class="draweritem" onclick="writtenMorse()" id="writtenMorse">writtenMorse</div>
|
||||
<div class="draweritem" onclick="normalMorse()" id="normalMorse">Normal Morse</div>
|
||||
<div class="drawerdivider"></div>
|
||||
<div class="draweritem" onclick="bug()">Report a Bug</div>
|
||||
<div class="drawerdividerbottom"></div>
|
||||
<div class="draweritembottom" onclick="about()">About</div>
|
||||
</div>
|
||||
|
|
|
@ -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'))) ;
|
||||
|
|
|
@ -138,6 +138,10 @@ body {
|
|||
#writtenmorse {
|
||||
color: #03a9f4; }
|
||||
|
||||
.version {
|
||||
font-style: italic;
|
||||
font-size: 20px; }
|
||||
|
||||
@media screen and (max-width: 1400px) {
|
||||
.drawer {
|
||||
display: none;
|
||||
|
|
|
@ -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
|
||||
|
|
Reference in a new issue