Housekeeping

This commit is contained in:
MichaelCook 2017-02-23 14:52:32 +00:00
parent d7fe8146e3
commit 6b27448ee1

View File

@ -38,7 +38,7 @@ objectifyMarkdownNotWomen.table = function(header, body) {
movies = [{}]; movies = [{}];
}; };
client.open('GET', window.location.href + '/README.md'); client.open('GET', window.location.href + 'README.md');
client.onreadystatechange = function(e) { client.onreadystatechange = function(e) {
// Whipe movies and collections as this'll run a bunch of times // Whipe movies and collections as this'll run a bunch of times
moviesCollection = []; moviesCollection = [];
@ -56,8 +56,3 @@ client.onreadystatechange = function(e) {
}); });
}; };
client.send(); client.send();
function baseUrl() {
var href = window.location.href.split('/');
return href[0]+'//'+href[2]+'/';
}