1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-20 10:17:59 +01:00

s/let/var/

type is used at function block's tail.
This commit is contained in:
anekos
2008-12-30 21:01:23 +09:00
parent aef0a1fe28
commit 5b0d6674db

View File

@@ -678,7 +678,7 @@ function Buffer() //{{{
if (!isFeed)
{
let type = data.type && data.type.toLowerCase();
var type = data.type && data.type.toLowerCase();
type = type.replace(/^\s+|\s*(?:;.*)?$/g, "");
isFeed = (type == "application/rss+xml" || type == "application/atom+xml");