Last change
on this file since 571e0df was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
398 bytes
|
Line | |
---|
1 | (function(exports) {
|
---|
2 | var postProcessor = function() {};
|
---|
3 |
|
---|
4 | postProcessor.prototype = {
|
---|
5 | process: function (css) {
|
---|
6 | return 'hr {height:50px;}\n' + css;
|
---|
7 | }
|
---|
8 | };
|
---|
9 |
|
---|
10 | exports.install = function(less, pluginManager) {
|
---|
11 | pluginManager.addPostProcessor( new postProcessor());
|
---|
12 | };
|
---|
13 |
|
---|
14 | })(typeof exports === 'undefined' ? this['postProcessorPlugin'] = {} : exports);
|
---|
Note:
See
TracBrowser
for help on using the repository browser.