mirror of
https://github.com/less/less.js.git
synced 2026-02-13 08:25:09 -05:00
- Limited @import (plugin) support to add/addMultiple of functions - Altered @import (plugin) loading to support browser - Support proper closure scoping of @import (plugin) loaded functions
10 lines
109 B
Plaintext
10 lines
109 B
Plaintext
.in-scope {
|
|
@import (plugin) "./plugins/test";
|
|
result : test();
|
|
}
|
|
|
|
.out-of-scope {
|
|
result : test();
|
|
}
|
|
|