Small changes

This commit is contained in:
Jonathan Hodgson 2017-08-14 17:01:01 +01:00
parent c1fa136caa
commit b30fb8b8e2
3 changed files with 55 additions and 51 deletions

View file

@ -1,7 +1,8 @@
var xhr = new XMLHttpRequest(); if(window.location.host.indexOf(".local") == -1){
xhr.open('GET', 'https://dotcss.local/' + window.location.host.replace(/^www\./, '') + '.css'); var xhr = new XMLHttpRequest();
xhr.open('GET', 'https://dotcss.local/' + window.location.host.replace(/^www\./, '') + '.css');
xhr.onreadystatechange = function() { xhr.onreadystatechange = function() {
if(xhr.readyState == 4) { if(xhr.readyState == 4) {
if(xhr.status == 200) { if(xhr.status == 200) {
var style = document.createElement('style'); var style = document.createElement('style');
@ -22,6 +23,7 @@ xhr.onreadystatechange = function() {
defaultXHR.send(); defaultXHR.send();
} }
} }
}; };
xhr.send(); xhr.send();
}

View file

@ -1,7 +1,8 @@
var xhr = new XMLHttpRequest(); if(window.location.host.indexOf(".local") != -1){
xhr.open('GET', 'https://dotjs.local/' + window.location.host.replace(/^www\./, '') + '.js'); var xhr = new XMLHttpRequest();
xhr.open('GET', 'https://dotjs.local/' + window.location.host.replace(/^www\./, '') + '.js');
xhr.onreadystatechange = function() { xhr.onreadystatechange = function() {
if(xhr.readyState == 4) { if(xhr.readyState == 4) {
if(xhr.status == 200) { if(xhr.status == 200) {
var script = document.createElement('script'); var script = document.createElement('script');
@ -22,6 +23,7 @@ xhr.onreadystatechange = function() {
defaultXHR.send(); defaultXHR.send();
} }
} }
}; };
xhr.send(); xhr.send();
}

View file

@ -2,15 +2,15 @@
# Custom dir command # Custom dir command
function my_dir(){ function my_dir(){
homeIcon=" " homeIcon=""
wpPluginsIcon=".p." wpPluginsIcon=".p."
wpThemesIcon=".t." wpThemesIcon=".t."
siteIcon=" " siteIcon=""
wpSiteIcon=" " wpSiteIcon=""
magentoSiteIcon=" " magentoSiteIcon=""
dropboxIcon=" " dropboxIcon=""
seperator="  " seperator=" "
root=" " root=""
# Gets the path. # Gets the path.
local current_path="$(print -P "%~")" local current_path="$(print -P "%~")"