Final Fantasy Wiki copy&paste: "Theatrhythm Final Fantasy is a video game for the Nintendo 3DS. It is a "theater rhythm action" game in which players use the stylus to tap and hold notes while fighting enemies. The game features popular Final Fantasy songs and characters." To learn more, you can visit TFF Nintendo 3DS version official website.
Here are the code lines I was talking about:
if (navigator.userAgent.indexOf('iPhone') != -1) { location.href="sp/index.html"; }While that simply orders your browser to redirect you to the mobile version of the site in case you're not using a computer, it may also mean that, when the game will be released, you'll land on a specific home page based on your mobile device's operating system, maybe with a link to your applications store (Play Store, Windows Marketplace or App Store).
else if (navigator.userAgent.indexOf('iPod')!=-1){ location.href="sp/index.html"; }
else if (navigator.userAgent.indexOf('Android') != -1) { location.href="sp/index.html"; }
else if (navigator.userAgent.indexOf('Windows CE')!=-1){ location.href="sp/index.html"; }
The codes are just used to direct users of different devices to a different version of the websites and not an indication of what platforms it'll be out...
ReplyDeleteExactly! :P That's what I wrote at the end of the post
ReplyDelete