Skip to content

Commit

Permalink
Update from core
Browse files Browse the repository at this point in the history
  • Loading branch information
aimeos committed Sep 15, 2017
1 parent 6413c1e commit d61b805
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions public/themes/aimeos.js
Expand Up @@ -837,7 +837,12 @@ AimeosCatalog = {

Aimeos.createOverlay();

$.get($(this).attr("href"), function(data) {
$.ajax({
url: $(this).attr("href"),
headers: {
"X-Requested-With": "jQuery"
}
}).done(function(data) {

var doc = document.createElement("html");
doc.innerHTML = data;
Expand All @@ -864,7 +869,12 @@ AimeosCatalog = {

Aimeos.createOverlay();

$.get($(this).attr("href"), function(data) {
$.ajax({
url: $(this).attr("href"),
headers: {
"X-Requested-With": "jQuery"
}
}).done(function(data) {

var doc = document.createElement("html");
doc.innerHTML = data;
Expand Down

0 comments on commit d61b805

Please sign in to comment.