conversion tweaks

This commit is contained in:
Continuities
2015-11-09 18:36:55 -05:00
parent 3849f7871f
commit fba203cea1
5 changed files with 23 additions and 10 deletions
+5
View File
@@ -69,6 +69,7 @@ div#header {
right: 10px; right: 10px;
bottom: 10px; bottom: 10px;
color: #666; color: #666;
z-index: 10;
} }
.menu span { .menu span {
@@ -126,6 +127,10 @@ span.customSelectOptions {
text-decoration: underline; text-decoration: underline;
} }
.menu .appStore {
font-weight: bold;
}
div.headerButton { div.headerButton {
font-size: 18px; font-size: 18px;
cursor: pointer; cursor: pointer;
+2 -2
View File
@@ -144,11 +144,11 @@
position:relative; position:relative;
} }
.endGameRestart { .endGameOption {
font-size: 32px; font-size: 32px;
cursor: pointer; cursor: pointer;
} }
.endGameRestart:hover { .endGameOption:hover {
text-decoration: underline; text-decoration: underline;
} }
+1 -1
View File
@@ -27,7 +27,7 @@
Sorry about that!<br/> Sorry about that!<br/>
</strong><br/> </strong><br/>
Of course you can <a href='index.html?ignorebrowser=true'>play anyway</a>, but it probably won't work!<br/><br/> Of course you can <a href='index.html?ignorebrowser=true'>play anyway</a>, but it probably won't work!<br/><br/>
A Dark Room is now native on iOS! Get it on the <a href="https://itunes.apple.com/us/app/a-dark-room/id736683061?mt=8">App Store</a>. A Dark Room is now native on iOS! Get it on the <a href="https://itunes.apple.com/app/apple-store/id736683061?pt=2073437&ct=mobilesplash&mt=8">App Store</a>.
</div> </div>
</center> </center>
</body> </body>
+6 -6
View File
@@ -133,6 +133,12 @@
}); });
} }
$('<span>')
.addClass('appStore menuBtn')
.text(_('app store.'))
.click(function() { window.open('https://itunes.apple.com/app/apple-store/id736683061?pt=2073437&ct=adrproper&mt=8'); })
.appendTo(menu);
$('<span>') $('<span>')
.addClass('lightsOff menuBtn') .addClass('lightsOff menuBtn')
.text(_('lights off.')) .text(_('lights off.'))
@@ -173,12 +179,6 @@
.appendTo(menu); .appendTo(menu);
} }
$('<span>')
.addClass('menuBtn')
.text(_('app store.'))
.click(function() { window.open('https://itunes.apple.com/us/app/a-dark-room/id736683061'); })
.appendTo(menu);
$('<span>') $('<span>')
.addClass('menuBtn') .addClass('menuBtn')
.text(_('github.')) .text(_('github.'))
+9 -1
View File
@@ -438,11 +438,19 @@ var Space = {
$('#starsContainer').remove(); $('#starsContainer').remove();
$('#content, #notifications').remove(); $('#content, #notifications').remove();
$('<span>') $('<span>')
.addClass('endGame endGameRestart') .addClass('endGame endGameOption')
.text(_('restart.')) .text(_('restart.'))
.click(Engine.confirmDelete) .click(Engine.confirmDelete)
.appendTo('.centerCont') .appendTo('.centerCont')
.animate({opacity:1},1500); .animate({opacity:1},1500);
$('<br />')
.appendTo('.centerCont');
$('<span>')
.addClass('endGame endGameOption')
.text(_('app store.'))
.click(function() { window.open('https://itunes.apple.com/app/apple-store/id736683061?pt=2073437&ct=gameover&mt=8'); })
.appendTo('.centerCont')
.animate({opacity:1},1500);
Engine.options = {}; Engine.options = {};
Engine.deleteSave(true); Engine.deleteSave(true);
} }