mirror of
https://github.com/doublespeakgames/adarkroom.git
synced 2026-05-28 00:01:54 +08:00
conversion tweaks
This commit is contained in:
@@ -69,6 +69,7 @@ div#header {
|
||||
right: 10px;
|
||||
bottom: 10px;
|
||||
color: #666;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.menu span {
|
||||
@@ -126,6 +127,10 @@ span.customSelectOptions {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.menu .appStore {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
div.headerButton {
|
||||
font-size: 18px;
|
||||
cursor: pointer;
|
||||
|
||||
+2
-2
@@ -144,11 +144,11 @@
|
||||
position:relative;
|
||||
}
|
||||
|
||||
.endGameRestart {
|
||||
.endGameOption {
|
||||
font-size: 32px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.endGameRestart:hover {
|
||||
.endGameOption:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
+1
-1
@@ -27,7 +27,7 @@
|
||||
Sorry about that!<br/>
|
||||
</strong><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>
|
||||
</center>
|
||||
</body>
|
||||
|
||||
+6
-6
@@ -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>')
|
||||
.addClass('lightsOff menuBtn')
|
||||
.text(_('lights off.'))
|
||||
@@ -173,12 +179,6 @@
|
||||
.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>')
|
||||
.addClass('menuBtn')
|
||||
.text(_('github.'))
|
||||
|
||||
+9
-1
@@ -438,11 +438,19 @@ var Space = {
|
||||
$('#starsContainer').remove();
|
||||
$('#content, #notifications').remove();
|
||||
$('<span>')
|
||||
.addClass('endGame endGameRestart')
|
||||
.addClass('endGame endGameOption')
|
||||
.text(_('restart.'))
|
||||
.click(Engine.confirmDelete)
|
||||
.appendTo('.centerCont')
|
||||
.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.deleteSave(true);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user