Files
less.js/lib/less/tree/alpha.js
2010-06-19 01:51:26 -04:00

14 lines
260 B
JavaScript

(function (tree) {
tree.Alpha = function (val) {
this.value = val;
};
tree.Alpha.prototype = {
toCSS: function () {
return "alpha(opacity=" + this.value.toCSS() + ")";
},
eval: function () { return this }
};
})(require('less/tree'));