fix querySelectorAll call

This commit is contained in:
cloudhead
2010-05-17 23:09:12 -04:00
parent ee75bca587
commit 9c0b843fd2

View File

@@ -2,7 +2,7 @@
// Select all links with the 'rel' attribute set to "less"
//
var sheets = (document.querySelectorAll ? document.querySelectorAll
: jQuery)('link[rel="stylesheet/less"]');
: jQuery).call(document, 'link[rel="stylesheet/less"]');
less.env = location.hostname == '127.0.0.1' ||
location.hostname == '0.0.0.0' ||