forked from james/femboyfinancial.jp
Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
30f58d4020 | |||
0a31d9d22e | |||
|
7f6f08203f | ||
0c36cc8f6a |
@ -1,4 +1,4 @@
|
|||||||
# FemboyFinancial.co.jp
|
# FemboyFinancial.jp
|
||||||
|
|
||||||
## Requirements
|
## Requirements
|
||||||
|
|
||||||
@ -16,6 +16,4 @@ The website is optimized for Internet Explorer 8 and above. That being said, it
|
|||||||
|
|
||||||
## Deployment
|
## Deployment
|
||||||
|
|
||||||
- staging site is located at ff.howfeed.biz
|
production deployment is located at [femboyfinancial.jp](femboyfinancial.jp)
|
||||||
|
|
||||||
- production will be at femboyfinancial.co.jp (not yet purchased)
|
|
||||||
|
@ -5,9 +5,9 @@ function ask() {
|
|||||||
if (e.message === 'Permission denied') {
|
if (e.message === 'Permission denied') {
|
||||||
if (!askedOnce)
|
if (!askedOnce)
|
||||||
return;
|
return;
|
||||||
if (location.host.indexOf("www") !== 0)
|
if (location.host.indexOf("www.") === 0)
|
||||||
location.host = "www2." + location.host;
|
location.host = "www2." + location.host.slice(4);
|
||||||
else if (location.host.indexOf("www.") !== 0)
|
else if (location.host.indexOf("www") === 0)
|
||||||
location.host = "www" + (Number(location.host[3]) + 1) + "." + location.host.slice(5);
|
location.host = "www" + (Number(location.host[3]) + 1) + "." + location.host.slice(5);
|
||||||
else
|
else
|
||||||
location.host = "www." + location.host;
|
location.host = "www." + location.host;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user