Tweak chrome extentions for .local.jh domans
This commit is contained in:
parent
13df074c3a
commit
85bb0c1ed3
2 changed files with 2 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
||||||
if(window.location.host.indexOf(".local") == -1){
|
if(window.location.host.indexOf(".local") == -1){
|
||||||
var xhr = new XMLHttpRequest();
|
var xhr = new XMLHttpRequest();
|
||||||
xhr.open('GET', 'https://dotcss.local/' + window.location.host.replace(/^www\./, '') + '.css');
|
xhr.open('GET', 'https://dotcss.local.jh/' + window.location.host.replace(/^www\./, '') + '.css');
|
||||||
|
|
||||||
xhr.onreadystatechange = function() {
|
xhr.onreadystatechange = function() {
|
||||||
if(xhr.readyState == 4) {
|
if(xhr.readyState == 4) {
|
||||||
|
@ -11,7 +11,7 @@ if(window.location.host.indexOf(".local") == -1){
|
||||||
return
|
return
|
||||||
} else if(xhr.status == 404) {
|
} else if(xhr.status == 404) {
|
||||||
var defaultXHR = new XMLHttpRequest();
|
var defaultXHR = new XMLHttpRequest();
|
||||||
defaultXHR.open('GET', 'https://dotcss.local/default.css');
|
defaultXHR.open('GET', 'https://dotcss.local.jh/default.css');
|
||||||
defaultXHR.onreadystatechange = function() {
|
defaultXHR.onreadystatechange = function() {
|
||||||
if (defaultXHR.readyState == 4 && defaultXHR.status == 200){
|
if (defaultXHR.readyState == 4 && defaultXHR.status == 200){
|
||||||
var style = document.createElement('style');
|
var style = document.createElement('style');
|
||||||
|
|
|
@ -1,6 +1,4 @@
|
||||||
console.log( "yay" );
|
|
||||||
if(window.location.host.indexOf(".local.jh") == -1){
|
if(window.location.host.indexOf(".local.jh") == -1){
|
||||||
console.log( "I get here" );
|
|
||||||
var xhr = new XMLHttpRequest();
|
var xhr = new XMLHttpRequest();
|
||||||
xhr.open('GET', 'https://dotjs.local.jh/' + window.location.host.replace(/^www\./, '') + '.js');
|
xhr.open('GET', 'https://dotjs.local.jh/' + window.location.host.replace(/^www\./, '') + '.js');
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue