mirror of
https://github.com/Combodo/iTop.git
synced 2026-05-20 07:42:17 +02:00
Bug fix : missing semicolons were causing an error with IE9.
SVN:2.0.2[3108]
This commit is contained in:
@@ -131,12 +131,12 @@ jQuery.extend(
|
|||||||
jQuery.handleError(s, xml, null, e);
|
jQuery.handleError(s, xml, null, e);
|
||||||
}
|
}
|
||||||
|
|
||||||
}, 100)
|
}, 100);
|
||||||
|
|
||||||
xml = null
|
xml = null;
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
// Timeout checker
|
// Timeout checker
|
||||||
if ( s.timeout > 0 )
|
if ( s.timeout > 0 )
|
||||||
{
|
{
|
||||||
@@ -197,7 +197,9 @@ jQuery.extend({
|
|||||||
s.error( xhr, status, e );
|
s.error( xhr, status, e );
|
||||||
// If we have some XML response text (e.g. from an AJAX call) then log it in the console
|
// If we have some XML response text (e.g. from an AJAX call) then log it in the console
|
||||||
else if(xhr.responseText)
|
else if(xhr.responseText)
|
||||||
console.log(xhr.responseText);
|
{
|
||||||
|
//console.log(xhr.responseText);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user