alpha.js init

This commit is contained in:
cloudhead
2010-02-25 22:32:34 -05:00
parent 9970cb0124
commit 3f893b8ddc

8
lib/less/node/alpha.js Normal file
View File

@@ -0,0 +1,8 @@
node.Alpha = function URL(val) {
this.value = val;
};
node.Alpha.prototype = {
toCSS: function () {
return "alpha(opacity=" + this.value.toCSS ? this.value.toCSS() : this.value + ")";
}
};