浏览代码

Merge pull request #334 from danielbayerlein/remove-debug-statement

Remove @debug statements
Jeremy Thomas 8 年之前
父节点
当前提交
e985df2cdd
共有 1 个文件被更改,包括 0 次插入4 次删除
  1. 0 4
      sass/utilities/functions.sass

+ 0 - 4
sass/utilities/functions.sass

@@ -22,10 +22,6 @@
   @return (map-get($color-rgb, 'red') * .2126) + (map-get($color-rgb, 'green') * .7152) + (map-get($color-rgb, 'blue') * .0722)
 
 @function findColorInvert($color)
-  // @if (colorLuminance($color) > 0.67)
-  //   @return rgba(black, 0.7)
-  @debug #{$color}
-  @debug colorLuminance($color)
   @if (colorLuminance($color) > 0.55)
     @return rgba(black, 0.7)
   @else