Use charAt to appease IE7 users.

master
Antonio Galea 2012-08-22 17:03:37 +02:00 committed by Jason A. Donenfeld
parent 34d5f330fe
commit 598fef93fd
1 changed files with 5 additions and 5 deletions

View File

@ -106,7 +106,7 @@
PhotoFloat.cachePath = function(path) {
if (path === "")
return "root";
if (path[0] === "/")
if (path.charAt(0) === "/")
path = path.substring(1);
path = path
.replace(/ /g, "_")
@ -155,15 +155,15 @@
};
PhotoFloat.cleanHash = function(hash) {
while (hash.length) {
if (hash[0] === "#")
if (hash.charAt(0) === "#")
hash = hash.substring(1);
else if (hash[0] === "!")
else if (hash.charAt(0) === "!")
hash = hash.substring(1);
else if (hash[0] === "/")
else if (hash.charAt(0) === "/")
hash = hash.substring(1);
else if (hash.substring(0, 3) === "%21")
hash = hash.substring(3);
else if (hash[hash.length - 1] === "/")
else if (hash.charAt(hash.length - 1) === "/")
hash = hash.substring(0, hash.length - 1);
else
break;