Browse Source

Fix hardcoded $experimental-support-for-pie variable

The `$experimental-support-for-pie` could not be changed because
we were inadvertently always resetting it. This maintains the default
initial value but will allow it to be changed in userland.

Fixes #52
Closes #81
master
xzyfer 9 years ago
parent
commit
88407a1660
  1. 2
      lib/compass/css3/_pie.scss

2
lib/compass/css3/_pie.scss

@ -1,4 +1,4 @@
$experimental-support-for-pie: true;
$experimental-support-for-pie: true !default;
// It is recommended that you use Sass's @extend directive to apply the behavior
// to your PIE elements. To assist you, Compass provides this variable.

Loading…
Cancel
Save