fix api redirect for public plugins

This commit is contained in:
Lee Lawlor
2014-05-09 13:32:52 -04:00
parent ac83280b68
commit ab7694dae9
5 changed files with 11 additions and 5 deletions

View File

@ -1,6 +1,6 @@
// if on api subdomain except for charts, redirect
// if on api subdomain except for charts and plugins, redirect
var wloc = window.location.toString();
if (wloc.indexOf('api') !== -1 && wloc.indexOf('api') < 10 && wloc.indexOf('charts') === -1) {
if (wloc.indexOf('api') !== -1 && wloc.indexOf('api') < 10 && wloc.indexOf('charts') === -1 && wloc.indexOf('plugins') === -1) {
window.location = wloc.replace('api', 'www');
}