thingspeak/app/assets/javascripts/noapi.js
2014-05-09 13:32:52 -04:00

7 lines
282 B
JavaScript

// 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 && wloc.indexOf('plugins') === -1) {
window.location = wloc.replace('api', 'www');
}