Skip to content

Commit 6de6deb

Browse files
committed
Merge pull request leafo#209 from Barryvdh/master
Fix for Issue leafo#205
2 parents b38dc88 + 3647c08 commit 6de6deb

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

lessc.inc.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1479,6 +1479,10 @@ function lib_rgbahex($color) {
14791479
isset($color[4]) ? $color[4]*255 : 0,
14801480
$color[1],$color[2], $color[3]);
14811481
}
1482+
1483+
function lib_argb($color){
1484+
return $this->lib_rgbahex($color);
1485+
}
14821486

14831487
// utility func to unquote a string
14841488
function lib_e($arg) {

0 commit comments

Comments
 (0)