mirror of
https://github.com/less/less.js.git
synced 2026-05-01 03:00:22 -04:00
fix querySelectorAll call
This commit is contained in:
@@ -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' ||
|
||||
|
||||
Reference in New Issue
Block a user