Last change
on this file since 256 was
256,
checked in by hendrikvanantwerpen, 13 years ago
|
Reworked project structure based on REST interaction and Dojo library. As
soon as this is stable, the old jQueryUI branch can be removed (it's
kept for reference).
|
-
Property svn:executable set to
*
|
File size:
294 bytes
|
Line | |
---|
1 | (function (tree) { |
---|
2 | |
---|
3 | tree.Comment = function (value, silent) { |
---|
4 | this.value = value; |
---|
5 | this.silent = !!silent; |
---|
6 | }; |
---|
7 | tree.Comment.prototype = { |
---|
8 | toCSS: function (env) { |
---|
9 | return env.compress ? '' : this.value; |
---|
10 | }, |
---|
11 | eval: function () { return this } |
---|
12 | }; |
---|
13 | |
---|
14 | })(require('less/tree')); |
---|
Note: See
TracBrowser
for help on using the repository browser.