links with any target attr will not use ajaxClick (not just _blank)

This commit is contained in:
scottjehl 2010-10-03 11:20:14 -04:00
parent 762341fc52
commit 13c10d4862

View file

@ -104,7 +104,7 @@
};
// ajaxify all navigable links
jQuery( "a:not([href=#]):not([target=_blank]):not([rel=external])" ).live( "click", function(event) {
jQuery( "a:not([href=#]):not([target]):not([rel=external])" ).live( "click", function(event) {
jQuery( this ).ajaxClick();
return false;
});