Skip to content

Commit

Permalink
Merge pull request #47 from philbuchanan/#46
Browse files Browse the repository at this point in the history
#46 Fixed status bar display
  • Loading branch information
philbuchanan committed Dec 14, 2015
2 parents 4d39170 + c6e99d4 commit b46fca1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion calculator.appcache
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
CACHE MANIFEST
# v3.1.1: 2015-11-05
# v3.1.2: 2015-12-14
index.html
js/script.js
css/style.css
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<meta name="viewport" content="initial-scale=1, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-status-bar-style" content="default">
<meta name="apple-mobile-web-app-title" content="Calculator">
<meta name="format-detection" content="telephone=no">

Expand Down
4 changes: 2 additions & 2 deletions js/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* A calculator iOS web application that supports brackets, backspace and saved
* calculation history. The app uses HTML5 app caching so it will work offline.
*
* @version 3.1.1
* @version 3.1.2
*/

"use strict";
Expand All @@ -13,7 +13,7 @@ var devmode = true;

function Calculator() {
this.settings = {
version: '3.1.1',
version: '3.1.2',
history: 100,
fontsize: 60,
decimals: 2
Expand Down

0 comments on commit b46fca1

Please sign in to comment.