mirror of
https://github.com/less/less.js.git
synced 2026-01-23 06:07:56 -05:00
Fixed scope for plugins to apply correctly for mixins, directives and detached rulesets. Updated plugin unit tests to be more comprehensive
10 lines
202 B
JavaScript
10 lines
202 B
JavaScript
|
|
functions.addMultiple({
|
|
"test-shadow" : function() {
|
|
return new tree.Anonymous( "global" );
|
|
},
|
|
"test-global" : function() {
|
|
return new tree.Anonymous( "global" );
|
|
}
|
|
});
|