Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion MangaFox.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ var MangaFox = {
},
getMangaList: function(search, callback) {
"use strict";
var urlManga = "http://mangafox.me/search.php?name=" + search +
var urlManga = "http://mangafox.la/search.php?name=" + search +
"&advopts=1";
$.ajax({
url: urlManga,
Expand Down
4 changes: 2 additions & 2 deletions MangaHere.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ var MangaHere = {
languages: "en",
//Return true if the url corresponds to the mirror
isMe: function (url) {
return (url.indexOf("mangahere.co/") != -1);
return (url.indexOf("mangahere.cc/") != -1);
},
//Return the list of all or part of all mangas from the mirror
//The search parameter is filled if canListFullMangas is false
//This list must be an Array of [["manga name", "url"], ...]
//This function must call callback("Mirror name", [returned list]);
getMangaList: function (search, callback) {
$.ajax({
url: "http://www.mangahere.co/search.php?name=" + search,
url: "http://www.mangahere.cc/search.php?name=" + search,
beforeSend: function (xhr) {
xhr.setRequestHeader("Cache-Control", "no-cache");
xhr.setRequestHeader("Pragma", "no-cache");
Expand Down
2 changes: 1 addition & 1 deletion websites.json

Large diffs are not rendered by default.