diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/index.html | 4 | ||||
-rw-r--r-- | src/styles/main.scss | 1 | ||||
-rw-r--r-- | src/templates/time.template.html | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/src/index.html b/src/index.html index 87a9e68..50cb40f 100644 --- a/src/index.html +++ b/src/index.html @@ -23,7 +23,7 @@ <body> <div class="top"> <script id="app-template" type="x-tmpl-mustache"> - <a href="#" class="button" id="app-{{id}}" app-id="{{ id }}" onclick="window.start(this);"> + <a class="button" id="app-{{id}}" app-id="{{ id }}" onclick="window.start(this);"> <div class="icon {{ icon }}"> </div> @@ -56,4 +56,4 @@ </div> </body> -</html>
\ No newline at end of file +</html> diff --git a/src/styles/main.scss b/src/styles/main.scss index a09d4e5..a53778f 100644 --- a/src/styles/main.scss +++ b/src/styles/main.scss @@ -6,6 +6,7 @@ html { height: 100%; background-size: cover; -webkit-overflow-scrolling: touch; + user-select: none; } @keyframes zoomIn { diff --git a/src/templates/time.template.html b/src/templates/time.template.html index c7dad96..af4dd1d 100644 --- a/src/templates/time.template.html +++ b/src/templates/time.template.html @@ -4,7 +4,7 @@ <div class="infoItem hour"> {{ date.hour }} </div> -<a class="infoItem wheater" href="#" onclick="time.refresh()"> +<a class="infoItem wheater" onclick="time.refresh()"> {{ #weather }} {{ #showTemperature }} <div class="temperature weatherItem"> |