thingspeak/app/assets/javascripts/noapi.js

7 lines
236 B
JavaScript
Raw Normal View History

2014-03-22 18:21:45 +01:00
// if on api subdomain except for charts, redirect
var wloc = window.location.toString();
2014-03-22 18:21:45 +01:00
if (wloc.indexOf('api') !== -1 && wloc.indexOf('api') < 10 && wloc.indexOf('charts') === -1) {
window.location = wloc.replace('api', 'www');
2014-03-22 18:21:45 +01:00
}