Leaves the original URL alone and adds ? or & when it does the XHR.

This commit is contained in:
Sarven Capadisli 2010-02-23 00:27:41 +01:00
parent 8aa8e124cb
commit 3b823f8fbd
1 changed files with 1 additions and 2 deletions

View File

@ -63,11 +63,10 @@ SN.U.DialogBox = {
f.show();
}
else {
a[0].href = (a[0].href.match(/[\\?]/) === null) ? a[0].href+'?' : a[0].href+'&';
$.ajax({
type: 'GET',
dataType: 'xml',
url: a[0].href+'ajax=1',
url: a[0].href + ((a[0].href.match(/[\\?]/) === null)?'?':'&') + 'ajax=1',
beforeSend: function(formData) {
a.addClass('processing');
},