From b5475f53ee178d991fcee17cf842a34d3e1c4097 Mon Sep 17 00:00:00 2001 From: Meydjer Luzzoli Date: Thu, 22 Mar 2012 09:32:16 -0300 Subject: [PATCH] Prevents the "Object doesn't support this property or method" bug on IE7/IE8 --- js/jquery.prettyPhoto.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/jquery.prettyPhoto.js b/js/jquery.prettyPhoto.js index 0f9ac8a..eafabad 100644 --- a/js/jquery.prettyPhoto.js +++ b/js/jquery.prettyPhoto.js @@ -887,7 +887,7 @@ }; function getHashtag(){ - url = location.href; + var url = location.href; hashtag = (url.indexOf('#prettyPhoto') !== -1) ? decodeURI(url.substring(url.indexOf('#prettyPhoto')+1,url.length)) : false; return hashtag;