export: sorted by player. controls: centered. shell.nix added. makefile: clean, haml cli changes
This commit is contained in:
parent
9c15f6c0e9
commit
27b97f7f2c
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,3 +1,5 @@
|
|||
.*.sw[po]
|
||||
*.css
|
||||
*.html
|
||||
*.js
|
||||
*.map
|
||||
|
|
11
Makefile
11
Makefile
|
@ -1,11 +1,14 @@
|
|||
all: index.html app.js app.css
|
||||
.PHONY: all
|
||||
|
||||
index.html: index.html.haml
|
||||
haml $^ $@
|
||||
index.html: index.html.haml app.js app.css
|
||||
haml render $< >$@
|
||||
|
||||
app.js: app.js.coffee
|
||||
coffee -cs >$@ <$^
|
||||
coffee -cs <$< >$@
|
||||
|
||||
app.css: app.css.sass
|
||||
sassc $^ $@
|
||||
sass $< $@
|
||||
|
||||
clean:
|
||||
rm -f index.html app.js app.css
|
||||
|
|
|
@ -7,6 +7,9 @@ h1
|
|||
text-align: center
|
||||
|
||||
.controls
|
||||
margin: 0 auto
|
||||
width: 30em
|
||||
text-align: center
|
||||
button, a
|
||||
display: inline-block
|
||||
border: none
|
||||
|
@ -20,6 +23,8 @@ h1
|
|||
font-size: 2em
|
||||
border-radius: 1ex
|
||||
outline: none
|
||||
width: 3em
|
||||
height: 3em
|
||||
&:hover, &:active
|
||||
box-shadow: inset 0 0 0.7ex white, 0 0 1ex white
|
||||
background: #ddd
|
||||
|
|
|
@ -94,6 +94,7 @@ window.addEventListener 'load', ->
|
|||
exporthelper = clock.element.querySelector ':scope .exporthelper'
|
||||
download.addEventListener 'click', (e) ->
|
||||
t = ''
|
||||
window.list.sort (a,b) -> a[2].value-b[2].value
|
||||
for en in window.list
|
||||
t += "#{en[0]}\t#{en[1]}\t#{en[2].value}\n"
|
||||
exporthelper.href = "data:text/csv;name=schplitted.csv,#{encodeURIComponent t}"
|
||||
|
|
|
@ -5,8 +5,10 @@
|
|||
%meta(http-equiv="X-UA-Compatible" content="IE=edge")
|
||||
%meta(name="viewport" content="width=device-width, initial-scale=1")
|
||||
%title Zeitschplitter
|
||||
%link(rel="stylesheet" href="app.css")
|
||||
%script(type="text/javascript" src="app.js")
|
||||
:css
|
||||
#{File.read 'app.css'}
|
||||
:javascript
|
||||
#{File.read 'app.js'}
|
||||
|
||||
%body
|
||||
%header
|
||||
|
|
9
shell.nix
Normal file
9
shell.nix
Normal file
|
@ -0,0 +1,9 @@
|
|||
with (import <nixpkgs> {});
|
||||
stdenv.mkDerivation {
|
||||
name = "zeitschplitter-env";
|
||||
buildInputs = [
|
||||
#ruby rubyPackages.openssl env.gems.coffee-script env.gems.haml
|
||||
gnumake git dart-sass nodePackages.coffee-script rubyPackages.haml
|
||||
];
|
||||
LANG = "de_AT.UTF-8";
|
||||
}
|
Loading…
Reference in a new issue