misplaced semicolon

This commit is contained in:
John Bender 2011-01-31 00:13:01 -08:00
parent 770ff8edfb
commit 591593dd49

View file

@ -595,7 +595,7 @@
//check for protocol or rel and its not an embedded page
//TODO overlap in logic from isExternal, rel=external check should be
// moved into more comprehensive isExternalLink
isExternal = path.isExternal( url ) || isRelExternal && !isEmbeddedPage;
isExternal = path.isExternal( url ) || isRelExternal && !isEmbeddedPage,
//if target attr is specified we mimic _blank... for now
hasTarget = $this.is( "[target]" );