diff --git a/js_v9/view.js b/js_v9/view.js index fbc4f25..aeecc81 100644 --- a/js_v9/view.js +++ b/js_v9/view.js @@ -96,14 +96,20 @@ function toggleClass(element, active) { function showText(text) { var messages = { 'paused': "
Game Paused
", - 'pausedAndroid': "
Game Paused
Don't like ads? Want to support the developer? Tap for the ad-free version.
", - 'start': "
Press enter to start
", + 'pausedAndroid': "
Game Paused
", + 'pausediOS': "
Game Paused
Want to support the developers? Don't like ads? Tap for Hextris ad-free!
", + 'pausedOther': "
Game Paused
Want to support the developers? Click here to buy one of the ad-free mobile versions!
", + 'start': "
Press enter to start
" }; if (text == 'paused') { if (settings.os == 'android') { - text = 'pausedAndroid'; - } + text = 'pausedAndroid' + } else if (settings.os == 'ios') { + text = 'pausediOS' + } else if (settings.platform == 'nonmobile') { + text = 'pausedOther' + } } if (text == 'gameover') {