Merge branch 'develop' of /var/lib/git/repositories/manuel/uhr

This commit is contained in:
Manuel Friedli 2013-11-25 17:00:48 +01:00
commit 14ba6ae90c
3 changed files with 13 additions and 13 deletions

View File

@ -1,5 +1,5 @@
CACHE MANIFEST CACHE MANIFEST
# 2.1 # 2.1.1
index.html index.html
jquery-2.0.3.min.js jquery-2.0.3.min.js

4
uhr.js
View File

@ -125,9 +125,9 @@ function renderLayout() {
} }
} }
} }
function Letter(value, style = '') { function Letter(value, style) {
this.value = value; this.value = value;
this.style = style; this.style = style || '';
this.getStyle = function() { this.getStyle = function() {
return "item letter " + style; return "item letter " + style;
} }